`
zhangwei_david
  • 浏览: 475882 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Spring 外部化bean配置

阅读更多

在配置文件中配置Bean 时,你必须记住,将部署细节如文件路径,服务器地址,用户名称和密码与Bean配置混在一起是不好的做法。通常Bean的配置由开发人员编写,而部署细节因不同的环境而不同,如果开发环境和测试环境以及预发布环境和线上环境等。

     如何解决不同环境不同导致的重复修改Bean配置呢?

      Spring 有 一个名称为PropertyPlaceHolderConfigurer的Bean工厂后处理器,用来将部分Bean配置外部化为一个属性文件。你可以在 Bean的配置文件中使用${var}形式的变量,PropertyPlaceHolderConfigurer会从属性文件中加载属性并替换他们。

   

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:jee="http://www.springframework.org/schema/jee"
	xmlns:task="http://www.springframework.org/schema/task"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans
		http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
		http://www.springframework.org/schema/context
		http://www.springframework.org/schema/context/spring-context-3.0.xsd
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
		http://www.springframework.org/schema/tx
		http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
		http://www.springframework.org/schema/jee 
		http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
		http://www.springframework.org/schema/task  
        http://www.springframework.org/schema/task/spring-task-3.1.xsd  
		">
	<context:component-scan base-package="com.david.*" />
	<context:property-placeholder location="config.properties" />
	<!-- <bean class="org.springframework.remoting.rmi.RmiServiceExporter" p:service-ref="spitterService" 
		p:serviceName="SpitterService" p:serviceInterface="com.david.service.SpitterService" 
		/> <bean id="spitterService" class="com.david.service.impl.SpitterServiceImpl" 
		/> -->
	<bean
		class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping" />
	<bean
		class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
		<property name="messageConverters">
			<list>
				<bean
					class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
					<property name="supportedMediaTypes">
						<list>
							<value>text/html;charset=UTF-8</value>
							<value>application/json;charset=UTF-8</value>
						</list>
					</property>
				</bean>
			</list>
		</property>
	</bean>
	<!-- <bean id="spitterServiceRmi" class="org.springframework.remoting.rmi.RmiProxyFactoryBean" 
		p:serviceUrl="rmi://localhost/SpitterService" p:serviceInterface="com.david.service.SpitterService" 
		/> -->
	<!-- 定义数据源 -->
	<bean id="ams" class="com.mchange.v2.c3p0.ComboPooledDataSource"
		destroy-method="close">
		<property name="driverClass" value="${jdbc.ams.driver}" />
		<property name="jdbcUrl" value="${jdbc.ams.url}" />
		<property name="user" value="${jdbc.ams.username}" />
		<property name="password" value="${jdbc.ams.password}" />
		<property name="initialPoolSize" value="${initialSize}" />
		<property name="minPoolSize" value="${minPoolSize}" />
		<property name="maxPoolSize" value="${maxActive}" />
		<property name="acquireIncrement" value="${acquireIncrement}" />
		<property name="maxIdleTime" value="${maxIdleTime}" />
	</bean>

	<!-- 定义jdbc模板类 -->
	<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
		<property name="dataSource" ref="ams" />
	</bean>

	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="addBook" propagation="REQUIRED" />
			<tx:method name="deleteBook" propagation="REQUIRES_NEW" />
			<tx:method name="addUser" propagation="NESTED"/>
		</tx:attributes>
	</tx:advice>
	<bean id="transactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="ams" />
	</bean>
	<aop:config>
		<aop:advisor
			pointcut="execution(* *..david.service.UserService*.*(..))||execution(* *..david.common.facade.ServiceFacade.*(..))||execution(* *..david.service.BookService.*(..))"
			advice-ref="txAdvice" />
	</aop:config>
</beans>

 

 

分享到:
评论

相关推荐

    Spring实例化Bean顺序

    这里,我们主要探讨的是Spring如何通过其IoC(Inversion of Control)容器来实例化Bean,并理解其背后的逻辑。 首先,我们要知道Spring IoC容器是通过XML配置文件、注解或Java配置类来管理Bean的生命周期。Bean的...

    Spring--2.Spring 中的 Bean 配置-2-1

    以上是Spring中基于XML的Bean配置的基本知识点,通过这些配置,我们可以精细控制Spring容器如何管理和实例化Bean,以及它们之间的依赖关系。随着Spring的发展,Java配置和注解配置逐渐成为主流,它们提供了更简洁、...

    第一章 Spring4 简介及获取Bean

    在Spring框架中,Bean是被Spring管理的对象,它们可以通过XML配置、注解或者Java配置类来定义。Spring使用IoC容器来管理和实例化这些Bean。获取Bean主要有以下几种方式: 1. **通过Bean的ID**:使用`...

    Spring Boot外部化配置实战解析

    Spring Boot外部化配置实战解析是关于如何在Spring Boot应用中灵活管理配置的实践指南。本文将深入探讨这一主题,帮助开发者更好地理解和应用Spring Boot的外部化配置机制。 首先,我们来了解一下Spring Boot外部化...

    spring配置最佳实践.zip

    通过application.properties或application.yml文件,我们可以将敏感信息(如数据库连接字符串、密码)和可变配置参数从代码中分离出来,实现配置的外部化管理。此外,还可以利用Spring Cloud Config Server实现集中...

    Spring通过c3p0配置bean连接数据库

    Spring 通过 C3P0 配置 Bean 连接数据库 Spring 框架是一种流行的 Java ...我们也展示了两种不同的配置方法,包括直接在 Spring 配置文件中配置和使用外部化配置文件。这些方法都可以帮助开发者快速地实现数据库连接。

    spring 配置文件 归类

    在Spring框架中,配置文件是核心组成部分,它们用于定义bean的定义、依赖关系以及各种配置信息。本篇文章将深入探讨Spring配置文件中的归类,主要包括IOC(Inversion of Control,控制反转)和AOP(Aspect-Oriented ...

    Spring项目中怎么配置log4j

    在Spring项目中,我们可以使用Spring的`PropertyPlaceholderConfigurer`来加载外部化的log4j配置,这样在不同环境中可以使用不同的配置文件。在Spring的配置文件`applicationContext.xml`中添加以下代码: ```xml ...

    Spring 加载多个配置文件

    因此,Spring 推荐将一个大型配置文件分解为多个小型配置文件,每个文件专注于一组功能相似的Bean。这样做有以下几大好处: 1. **降低风险**:减少因修改配置文件而导致整个系统崩溃的可能性。 2. **增强可读性**:...

    Spring的DI注解配置.zip

    在Spring框架中,依赖注入(Dependency Injection,简称DI)是一种重要的设计模式,它允许对象之间的依赖关系被外部化,使得代码更加灵活、可测试且易于维护。本资料包"Spring的DI注解配置.zip"专注于讲解如何使用...

    spring读取配置文件

    这两个类都是Spring用于创建应用上下文的实现,主要用来加载XML配置文件并初始化Spring容器。 1. `ClassPathXmlApplicationContext`:此上下文主要用于加载类路径(classpath)下的XML配置文件。这意味着配置文件应...

    Spring boot外部配置(配置中心化)详解

    Spring Boot 外部配置(配置中心化)详解 Spring Boot 框架提供了多种方式来进行外部配置,其中配置中心化是其中一种重要的方式。本文将详细介绍 Spring Boot 外部配置(配置中心化)的实现方式和原理。 配置中心...

    第十章 Spring 配置元信息(Configuration Metadata)1

    1. **Spring Bean配置元信息**:BeanDefinition是Spring中表示Bean配置的基本单元,它包含了Bean的所有元数据,如类名、初始化方法、销毁方法、依赖关系等。BeanDefinition有多种类型,如GenericBeanDefinition、...

    spring配置详解

    以上只是`applicationContext.xml`配置文件中一部分常见的知识点,实际应用中还有更多高级特性和用法,例如:工厂方法、属性文件外部化、bean的懒加载等。通过深入理解和熟练运用这些配置,开发者可以更好地利用...

    Spring的Bean管理;IoC, DI

    此外,Spring容器还支持Bean的初始化和销毁方法,开发者可以通过`@PostConstruct`和`@PreDestroy`注解来定义Bean的生命周期方法。 在实际开发中,Spring的Bean管理还涉及到AOP(面向切面编程)、事件监听、以及与...

    Spring动态加载配置文件

    `PropertyPlaceholderConfigurer`是Spring早期版本中处理属性文件的工具,而`@PropertySource`则是从Spring 3.1引入的新特性,它们都可以用来从外部属性文件中读取值并注入到bean中。 1. `...

    Spring 3.1配置文件示例(备忘)

    首先,`applicationContext.xml` 是 Spring 容器的配置文件,它定义了容器中 Bean 的实例化、装配和管理规则。在 Spring 3.1 中,XML 配置仍然是主流,尽管有基于注解的配置方式逐渐流行。Bean 的定义通常包括 ID...

    Spring Boot读取配置文件常用方式

    为了保持开发、测试和生产环境的配置分离,Spring Boot支持外部化配置。可以将配置文件放在类路径外,例如`config`目录下,或者通过环境变量或系统属性指定。例如,使用`--spring.config.location`启动命令行参数...

    spring2.5的applicationContext配置文件

    在Spring框架中,`applicationContext.xml`是核心的配置文件,它定义了bean的实例化、依赖注入、服务的装配以及整个应用上下文的行为。在Spring 2.5版本中,这个配置文件引入了许多增强的功能,提升了开发效率和灵活...

    Spring系列面试题129道(附答案解析)

    Spring的内部bean是指在另一个bean的属性中定义的bean,它仅在包含它的外部bean的上下文中存在。 22、什么是spring装配。 Spring装配是指将对象组装到一起,并设置它们之间的依赖关系的过程。 23、自动装配有哪些...

Global site tag (gtag.js) - Google Analytics