spring源码学习之:项目公共配置项解决方案

一:项目中有一些key,value的简单配置

org.apache.commons.configuration.DatabaseConfiguration可以轻松解决

 

二:配置项目的xml中bean

 1 <bean name="databaseConfiguration"  class="org.apache.commons.configuration.DatabaseConfiguration">
 2         <constructor-arg type="javax.sql.DataSource">
 3             <bean class="org.springframework.jndi.JndiObjectFactoryBean">
 4                 <property name="jndiName">
 5                     <value>java:comp/env/jdbc/PROFILEDS</value>
 6                 </property>
 7             </bean>
 8         </constructor-arg>
 9         <constructor-arg index="1" value="配置表的表名字"/>
10         <constructor-arg index="2" value="配置表的key的列名"/>
11         <constructor-arg index="3" value="配置表的value的列名"/>
12 </bean>

View Code

 

三:项目中就可以使用Configuration作为注入应用,就可以获取配置表中对应key的value值

1 @Autowired
2 private Configuration configuration;

View Code

 

四:spring的FactoryBean的接口

 1 <!--该bean注入到ioc容器是一个Properties对象-->
 2 <bean name="commonsConfigurationFactoryBean" class="org.springmodules.commons.configuration.CommonsConfigurationFactoryBean">
 3        <constructor-arg ref="databaseConfiguration"/>
 4     </bean>
 5
 6
 7
 8 <!--查询配置表的bean,项目中业务类可以直接注入Configuration使用,实时查询配置信息-->
 9 <bean name="databaseConfiguration"  class="org.apache.commons.configuration.DatabaseConfiguration">
10         <constructor-arg type="javax.sql.DataSource">
11             <bean class="org.springframework.jndi.JndiObjectFactoryBean">
12                 <property name="jndiName">
13                     <value>java:comp/env/jdbc/PROFILEDS</value>
14                 </property>
15             </bean>
16         </constructor-arg>
17         <constructor-arg index="1" value="配置表的表名字"/>
18         <constructor-arg index="2" value="配置表的key的列名"/>
19         <constructor-arg index="3" value="配置表的value的列名"/>
20 </bean>

View Code

==>在xml中配置实现该接口的类的bean,返回给ioc容器中的对象,是实现该接口的类的getObject()返回的对象。

==& gt;上述配置中 org.springmodules.commons.configuration.CommonsConfigurationFactoryBean就 是实现FactoryBean的实现类。返回给ioc容器的对象为

 

 

五:org.springframework.beans.factory.config.PropertyPlaceholderConfigurer占位符号的应用

==>占位符号应用的配置信息

 1 <!-- 这样,就可以在xml配置文件里用展位符号,业务bean里的属性也可以用占位符号 -->
 2     <bean id="commonsConfigurationPropertyPlaceholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
 3         <property name="order" value="1" />
 4         <property name="ignoreUnresolvablePlaceholders" value="true" />
 5         <property name="properties" ref="commonsConfigurationFactoryBean"/>
 6     </bean>
 7
 8
 9
10 <!--该bean注入到ioc容器是一个Properties对象-->
11 <bean name="commonsConfigurationFactoryBean" class="org.springmodules.commons.configuration.CommonsConfigurationFactoryBean">
12        <constructor-arg ref="databaseConfiguration"/>
13     </bean>
14
15
16
17 <!--查询配置表的bean,项目中业务类可以直接注入Configuration使用,实时查询配置信息-->
18 <bean name="databaseConfiguration"  class="org.apache.commons.configuration.DatabaseConfiguration">
19         <constructor-arg type="javax.sql.DataSource">
20             <bean class="org.springframework.jndi.JndiObjectFactoryBean">
21                 <property name="jndiName">
22                     <value>java:comp/env/jdbc/PROFILEDS</value>
23                 </property>
24             </bean>
25         </constructor-arg>
26         <constructor-arg index="1" value="配置表的表名字"/>
27         <constructor-arg index="2" value="配置表的key的列名"/>
28         <constructor-arg index="3" value="配置表的value的列名"/>
29 </bean>

View Code

==>xml的应用案例

<!--${}-->
<bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
        <property name="staticMethod" value="com.configuration.BusinessSourceHelper.setBusinessSource"/>         <property name="arguments" value="${commons.configuration.businessSource}" />
</bean>

View Code

 

==>业务类的应用案例

 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;

 @Producer
 public class AddRuleProducer {

    @Value("${billing.add.rule}")
     private String billingTopic;

     @Autowired
     private MessageSender messageSender;

     public void sendTopic(String message) {
         messageSender.send(billingTopic, message);
     }
 }

View Code

 

六:spring占位符

Spring 利用PropertyPlaceholderConfigurer占位符

 

1. PropertyPlaceholderConfigurer是个bean工厂后置处理器的实现,也就是 BeanFactoryPostProcessor接口的一个实现。PropertyPlaceholderConfigurer可以将上下文(配置文 件)中的属性值放在另一个单独的标准java Properties文件中去。在XML文件中用${key}替换指定的properties文件中的值。这样的话,只需要对properties文件进 行修改,而不用对xml配置文件进行修改。

2.在Spring中,使用PropertyPlaceholderConfigurer可以在XML配置文件中加入外部属性文件,当然也可以指定外部文件的编码,如:

<bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

   <property name="location">

     <value>conf/sqlmap/jdbc.properties</value>

   </property>

    <property name="fileEncoding">

      <value>UTF-8</value>

    </property>

</bean>

 

当然也可以引入多个属性文件,如:

<bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

  <property name="locations">

   <list>

    <value>/WEB-INF/mail.properties</value>  

    <value>classpath: conf/sqlmap/jdbc.properties</value>//注意这两种value值的写法

   </list>

  </property>

</bean>

 

3.譬如,jdbc.properties的内容为:

jdbc.driverClassName=com.mysql.jdbc.Driver

jdbc.url=jdbc:mysql://localhost/mysqldb?useUnicode=true&amp;characterEncoding=UTF-8&amp;zeroDateTimeBehavior=round;

jdbc.username=root

jdbc.password=123456

 

4.那么在spring配置文件中,我们就可以这样写:

<bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

  <property name="locations">

   <list>

    <value>classpath: conf/sqlmap/jdbc.properties </value>

   </list>

  </property>

</bean>

<bean id="dataSource"class="org.apache.commons.dbcp.BasicDataSource"destroy-method="close">

  <property name="driverClassName"value="${jdbc.driverClassName}" />

  <property name="url" value="${jdbc.url}" />

  <property name="username" value="${jdbc.username}"/>

  <property name="password"value="${jdbc.password}" />

</bean>

 

5.这样,一个简单的数据源就设置完毕了。可以看出:PropertyPlaceholderConfigurer起的作用就是将占位符指向的数据库配置信息放在bean中定义的工具。

6.查看源代码,可以发现,locations属性定义在 PropertyPlaceholderConfigurer的祖父类 PropertiesLoaderSupport中,而location只有 setter方法。类似于这样的配置,在spring的源程序中很常见的。

PropertyPlaceholderConfigurer如果在指定的Properties文件中找不到你想使用的属性,它还会在Java的System类属性中查找。

我们可以通过System.setProperty(key, value)或者java中通过-Dnamevalue来给Spring配置文件传递参数。

时间: 2024-09-20 23:32:26

spring源码学习之:项目公共配置项解决方案的相关文章

Spring源码学习之:FactoryBean的使用

转载:http://book.51cto.com/art/201311/419081.htm ==========个人理解========================= FactoryBean和BeanFactory的关系[1]FactoryBean:是一个接口,是一个用户自定义实现类实现该接口的A类.当ioc容器初始化完成后.BeanFactory(ioc容器)调用getBean("beanname")的时候,返回的bean不是A类对应的实例,而是A类getObject()方法返

spring源码学习之:spring容器的applicationContext启动过程

 Spring 容器像一台构造精妙的机器,我们通过配置文件向机器传达控制信息,机器就能够按照设定的模式进行工作.如果我们将Spring容器比喻为一辆汽车,可以将 BeanFactory看成汽车的发动机,而ApplicationContext则是 整辆汽车,它不但包括发动机,还包括离合器.变速器以及底盘.车身.电气设备等其他组件.在ApplicationContext内,各个组件按部就班. 有条不紊地完成汽车的各项功能. ApplicationContext内部封装 了一个BeanFactory对

【spring源码学习】spring的IOC容器之自定义xml配置标签扩展namspaceHandler向IOC容器中注册bean

[spring以及第三方jar的案例]在spring中的aop相关配置的标签,线程池相关配置的标签,都是基于该种方式实现的.包括dubbo的配置标签都是基于该方式实现的.[一]原理 ===>spring在解析xml标签,一旦不是以<bean>开头的元素,就会走org.springframework.beans.factory.xml.BeanDefinitionParserDelegate的parseCustomElement(Element ele)方法解析自定义的标签 ===>

【spring源码学习】spring的远程调用实现源码分析

[一]spring的远程调用提供的基础类 (1)org.springframework.remoting.support.RemotingSupport ===>spring提供实现的远程调用客户端实现的基础类 ===>例子:org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean org.springframework.remoting.caucho.HessianProxyFactoryBean (2)org.

【spring源码学习】springMVC之映射,拦截器解析,请求数据注入解析,DispatcherServlet执行过程

[一]springMVC之url和bean映射原理和源码解析 映射基本过程 (1)springMVC配置映射,需要在xml配置文件中配置<mvc:annotation-driven >  </mvc:annotation-driven> (2)配置后,该配置将会交由org.springframework.web.servlet.config.MvcNamespaceHandler处理,该类会转交给org.springframework.web.servlet.config.Anno

【spring源码学习】spring的事务管理的源码解析

[一]spring事务管理(1)spring的事务管理,是基于aop动态代理实现的.对目标对象生成代理对象,加入事务管理的核心拦截器==>org.springframework.transaction.interceptor.TransactionInterceptor.===>spring事务管理的核心拦截器===>需要配置的数据项:事务管理机制配置属性的查找类transactionAttributeSource,事务管理的核心处理器PlatformTransactionManager

【spring源码学习】spring的事件发布监听机制源码解析

[一]相关源代码类 (1)spring的事件发布监听机制的核心管理类:org.springframework.context.event.SimpleApplicationEventMulticaster. =>该类的初始化是放在项目加载时,在ioc容器xml配置文件解析加载完毕后,注册bean创建前后置处理实现类(BeanPostProcessor 接口实现),beanFactory配置处理(BeanFactoryPostProcessor接口实现)后,初始化该事件发布监听机制的核心类. pu

spring源码学习之:xml标签扩展配置例子

在很多情况下,我们需要为系统提供可配置化支持,简单的做法可以直接基于Spring的标准Bean来配置,但配置较为复杂或者需要更多丰富控制的 时候,会显得非常笨拙.一般的做法会用原生态的方式去解析定义好的xml文件,然后转化为配置对象,这种方式当然可以解决所有问题,但实现起来比较繁琐, 特别是是在配置非常复杂的时候,解析工作是一个不得不考虑的负担.Spring提供了可扩展Schema的支持,这是一个不错的折中方案,完成一个自定义 配置一般需要以下步骤: 设计配置属性和JavaBean 编写XSD文

【spring源码学习】spring集成orm数据框架

[一]简易的数据源配置 (1)配置文件 <!--springJdbcTemplemate数据操作配置信息 --> <bean id="driver" class="com.mysql.jdbc.Driver"></bean> <bean id="dataSource" class="org.springframework.jdbc.datasource.SimpleDriverDataSourc