public class PropertiesFactoryBeanextends PropertiesLoaderSupportimplements FactoryBean, InitializingBean

Allows for making a properties file from a classpath location available as Properties instance in a bean factory. Can be used to populate any bean property of type Properties via a bean reference.

Supports loading from a properties file and/or setting local properties on this FactoryBean. The created Properties instance will be merged from loaded and local values. If neither a location nor local properties are set, an exception will be thrown on initialization.

Can create a singleton or a new object on each request. Default is a singleton.

一个系统中通常会存在如下一些以Properties形式存在的配置文件

1.数据库配置文件demo-db.properties:

  1. database.url=jdbc:mysql://localhost/smaple
  2. database.driver=com.mysql.jdbc.Driver
  3. database.user=root
  4. database.password=123

2.消息服务配置文件demo-mq.properties:

  1. #congfig of ActiveMQ
  2. mq.java.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactory
  3. mq.java.naming.provider.url=failover:(tcp://localhost:61616?soTimeout=30000&connectionTimeout=30000)?jms.useAsyncSend=true&timeout=30000
  4. mq.java.naming.security.principal=
  5. mq.java.naming.security.credentials=
  6. jms.MailNotifyQueue.consumer=5

3.远程调用的配置文件demo-remote.properties:

  1. remote.ip=localhost
  2. remote.port=16800
  3. remote.serviceName=test

一、系统中需要加载多个Properties配置文件

应用场景:Properties配置文件不止一个,需要在系统启动时同时加载多个Properties文件。

配置方式:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="
  5. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
  6. <!-- 将多个配置文件读取到容器中,交给Spring管理 -->
  7. <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  8. <property name="locations">
  9. <list>
  10. <!-- 这里支持多种寻址方式:classpath和file -->
  11. <value>classpath:/opt/demo/config/demo-db.properties</value>
  12. <!-- 推荐使用file的方式引入,这样可以将配置和代码分离 -->
  13. <value>file:/opt/demo/config/demo-mq.properties</value>
  14. <value>file:/opt/demo/config/demo-remote.properties</value>
  15. </list>
  16. </property>
  17. </bean>
  18. <!-- 使用MQ中的配置 -->
  19. <bean id="MQJndiTemplate" class="org.springframework.jndi.JndiTemplate">
  20. <property name="environment">
  21. <props>
  22. <prop key="java.naming.factory.initial">${mq.java.naming.factory.initial}</prop>
  23. <prop key="java.naming.provider.url">${mq.java.naming.provider.url}</prop>
  24. <prop key="java.naming.security.principal">${mq.java.naming.security.principal}</prop>
  25. <prop key="java.naming.security.credentials">${mq.java.naming.security.credentials}</prop>
  26. <prop key="userName">${mq.java.naming.security.principal}</prop>
  27. <prop key="password">${mq.java.naming.security.credentials}</prop>
  28. </props>
  29. </property>
  30. </bean>
  31. </beans>

我们也可以将配置中的List抽取出来:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="
  5. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
  6. <!-- 将多个配置文件位置放到列表中 -->
  7. <bean id="propertyResources" class="java.util.ArrayList">
  8. <constructor-arg>
  9. <list>
  10. <!-- 这里支持多种寻址方式:classpath和file -->
  11. <value>classpath:/opt/demo/config/demo-db.properties</value>
  12. <!-- 推荐使用file的方式引入,这样可以将配置和代码分离 -->
  13. <value>file:/opt/demo/config/demo-mq.properties</value>
  14. <value>file:/opt/demo/config/demo-remote.properties</value>
  15. </list>
  16. </constructor-arg>
  17. </bean>
  18. <!-- 将配置文件读取到容器中,交给Spring管理 -->
  19. <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  20. <property name="locations" ref="propertyResources" />
  21. </bean>
  22. <!-- 使用MQ中的配置 -->
  23. <bean id="MQJndiTemplate" class="org.springframework.jndi.JndiTemplate">
  24. <property name="environment">
  25. <props>
  26. <prop key="java.naming.factory.initial">${mq.java.naming.factory.initial}</prop>
  27. <prop key="java.naming.provider.url">${mq.java.naming.provider.url}</prop>
  28. <prop key="java.naming.security.principal">${mq.java.naming.security.principal}</prop>
  29. <prop key="java.naming.security.credentials">${mq.java.naming.security.credentials}</prop>
  30. <prop key="userName">${mq.java.naming.security.principal}</prop>
  31. <prop key="password">${mq.java.naming.security.credentials}</prop>
  32. </props>
  33. </property>
  34. </bean>
  35. </beans>

二、整合多工程下的多个分散的Properties

应用场景:工程组中有多个配置文件,但是这些配置文件在多个地方使用,所以需要分别加载。

配置如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xsi:schemaLocation="
  6. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
  7. <!-- 将DB属性配置文件位置放到列表中 -->
  8. <bean id="dbResources" class="java.util.ArrayList">
  9. <constructor-arg>
  10. <list>
  11. <value>file:/opt/demo/config/demo-db.properties</value>
  12. </list>
  13. </constructor-arg>
  14. </bean>
  15. <!-- 将MQ属性配置文件位置放到列表中 -->
  16. <bean id="mqResources" class="java.util.ArrayList">
  17. <constructor-arg>
  18. <list>
  19. <value>file:/opt/demo/config/demo-mq.properties</value>
  20. </list>
  21. </constructor-arg>
  22. </bean>
  23. <!-- 用Spring加载和管理DB属性配置文件 -->
  24. <bean id="dbPropertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  25. <property name="order" value="1" />
  26. <property name="ignoreUnresolvablePlaceholders" value="true" />
  27. <property name="locations" ref="dbResources" />
  28. </bean>
  29. <!-- 用Spring加载和管理MQ属性配置文件 -->
  30. <bean id="mqPropertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  31. <property name="order" value="2" />
  32. <property name="ignoreUnresolvablePlaceholders" value="true" />
  33. <property name="locations" ref="mqResources" />
  34. </bean>
  35. <!-- 使用DB中的配置属性 -->
  36. <bean id="rmsDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"
  37. p:driverClassName="${demo.db.driver}" p:url="${demo.db.url}" p:username="${demo.db.username}"
  38. p:password="${demo.db.password}" pp:maxActive="${demo.db.maxactive}"p:maxWait="${demo.db.maxwait}"
  39. p:poolPreparedStatements="true" p:defaultAutoCommit="false">
  40. </bean>
  41. <!-- 使用MQ中的配置 -->
  42. <bean id="MQJndiTemplate" class="org.springframework.jndi.JndiTemplate">
  43. <property name="environment">
  44. <props>
  45. <prop key="java.naming.factory.initial">${mq.java.naming.factory.initial}</prop>
  46. <prop key="java.naming.provider.url">${mq.java.naming.provider.url}</prop>
  47. <prop key="java.naming.security.principal">${mq.java.naming.security.principal}</prop>
  48. <prop key="java.naming.security.credentials">${mq.java.naming.security.credentials}</prop>
  49. <prop key="userName">${mq.java.naming.security.principal}</prop>
  50. <prop key="password">${mq.java.naming.security.credentials}</prop>
  51. </props>
  52. </property>
  53. </bean>
  54. </beans>

注意:其中order属性代表其加载顺序,而ignoreUnresolvablePlaceholders为是否忽略不可解析的 Placeholder,如配置了多个PropertyPlaceholderConfigurer,则需设置为true。这里一定需要按照这种方式设置 这两个参数。

三、Bean中直接注入Properties配置文件中的值

应用场景:Bean中需要直接注入Properties配置文件中的值 。例如下面的代码中需要获取上述demo-remote.properties中的值:

  1. public class Client() {
  2. private String ip;
  3. private String port;
  4. private String service;
  5. }

配置如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="<a href="http://www.springframework.org/schema/beans">http://www.springframework.org/schema/beans</a>"
  3. xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance">http://www.w3.org/2001/XMLSchema-instance</a>"
  4. xmlns:util="<a href="http://www.springframework.org/schema/util">http://www.springframework.org/schema/util</a>"
  5. xsi:schemaLocation="
  6. <a href="http://www.springframework.org/schema/beans">http://www.springframework.org/schema/beans</a> <a href="http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">http://www.springframework.org/schema/beans/spring-beans-3.0.xsd</a>
  7. <a href="http://www.springframework.org/schema/util">http://www.springframework.org/schema/util</a> <a href="http://www.springframework.org/schema/util/spring-util-3.0.xsd">http://www.springframework.org/schema/util/spring-util-3.0.xsd</a>">
  8. <!-- 这种加载方式可以在代码中通过@Value注解进行注入,
  9. 可以将配置整体赋给Properties类型的类变量,也可以取出其中的一项赋值给String类型的类变量 -->
  10. <!-- <util:properties/> 标签只能加载一个文件,当多个属性文件需要被加载的时候,可以使用多个该标签 -->
  11. <util:properties id="remoteSettings" location="file:/opt/demo/config/demo-remote.properties" />
  12. <!-- <util:properties/> 标签的实现类是PropertiesFactoryBean,
  13. 直接使用该类的bean配置,设置其locations属性可以达到一个和上面一样加载多个配置文件的目的 -->
  14. <bean id="settings"
  15. class="org.springframework.beans.factory.config.PropertiesFactoryBean">
  16. <property name="locations">
  17. <list>
  18. <value>file:/opt/rms/config/rms-mq.properties</value>
  19. <value>file:/opt/rms/config/rms-env.properties</value>
  20. </list>
  21. </property>
  22. </bean>
  23. </beans>

Client类中使用Annotation如下:

  1. import org.springframework.beans.factory.annotation.Value;
  2. public class Client() {
  3. @Value("#{remoteSettings['remote.ip']}")
  4. private String ip;
  5. @Value("#{remoteSettings['remote.port']}")
  6. private String port;
  7. @Value("#{remoteSettings['remote.serviceName']}")
  8. private String service;
  9. }

四、Bean中存在Properties类型的类变量

应用场景:当Bean中存在Properties类型的类变量需要以注入的方式初始化

1. 配置方式:我们可以用(三)中的配置方式,只是代码中注解修改如下

  1. import org.springframework.beans.factory.annotation.Value;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. public class Client() {
  4. @Value("#{remoteSettings}")
  5. private Properties remoteSettings;
  6. }

2. 配置方式:也可以使用xml中声明Bean并且注入

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="
  5. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
  6. <!-- 可以使用如下的方式声明Properties类型的FactoryBean来加载配置文件,这种方式就只能当做Properties属性注入,而不能获其中具体的值 -->
  7. <bean id="remoteConfigs" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
  8. <property name="locations">
  9. <list>
  10. <value>file:/opt/demo/config/demo-remote.properties</value>
  11. </list>
  12. </property>
  13. </bean>
  14. <!-- 远端调用客户端类 -->
  15. <bean id="client" class="com.demo.remote.Client">
  16. <property name="properties" ref="remoteConfigs" />
  17. </bean>
  18. </beans>

代码如下:

  1. import org.springframework.beans.factory.annotation.Autowired;
  2. public class Client() {
  3. //@Autowired也可以使用
  4. private Properties remoteSettings;
  5. //getter setter
  6. }

上述的各个场景在项目群中特别有用,需要灵活的使用上述各种配置方式。

原文:http://kingxss.iteye.com/blog/1880681

补充:

The Spring Framework PropertiesFactoryBeanTests.java source code

/*
* Copyright 2002-2006 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/ package org.springframework.beans.factory.config; import java.util.Properties; import junit.framework.TestCase; import org.springframework.core.JdkVersion;
import org.springframework.core.io.ClassPathResource; /**
* @author Juergen Hoeller
* @since 01.11.2003
*/
public class PropertiesFactoryBeanTests extends TestCase { public void testWithPropertiesFile() throws Exception {
PropertiesFactoryBean pfb = new PropertiesFactoryBean();
pfb.setLocation(new ClassPathResource("/org/springframework/beans/factory/config/test.properties"));
pfb.afterPropertiesSet();
Properties props = (Properties) pfb.getObject();
assertEquals("99", props.getProperty("tb.array[0].age"));
} public void testWithPropertiesXmlFile() throws Exception {
// ignore for JDK < 1.5
if (JdkVersion.getMajorJavaVersion() < JdkVersion.JAVA_15) {
return;
} PropertiesFactoryBean pfb = new PropertiesFactoryBean();
pfb.setLocation(new ClassPathResource("/org/springframework/beans/factory/config/test-properties.xml"));
pfb.afterPropertiesSet();
Properties props = (Properties) pfb.getObject();
assertEquals("99", props.getProperty("tb.array[0].age"));
} public void testWithLocalProperties() throws Exception {
PropertiesFactoryBean pfb = new PropertiesFactoryBean();
Properties localProps = new Properties();
localProps.setProperty("key2", "value2");
pfb.setProperties(localProps);
pfb.afterPropertiesSet();
Properties props = (Properties) pfb.getObject();
assertEquals("value2", props.getProperty("key2"));
} public void testWithPropertiesFileAndLocalProperties() throws Exception {
PropertiesFactoryBean pfb = new PropertiesFactoryBean();
pfb.setLocation(new ClassPathResource("/org/springframework/beans/factory/config/test.properties"));
Properties localProps = new Properties();
localProps.setProperty("key2", "value2");
localProps.setProperty("tb.array[0].age", "0");
pfb.setProperties(localProps);
pfb.afterPropertiesSet();
Properties props = (Properties) pfb.getObject();
assertEquals("99", props.getProperty("tb.array[0].age"));
assertEquals("value2", props.getProperty("key2"));
} public void testWithPropertiesFileAndMultipleLocalProperties() throws Exception {
PropertiesFactoryBean pfb = new PropertiesFactoryBean();
pfb.setLocation(new ClassPathResource("/org/springframework/beans/factory/config/test.properties")); Properties props1 = new Properties();
props1.setProperty("key2", "value2");
props1.setProperty("tb.array[0].age", "0"); Properties props2 = new Properties();
props2.setProperty("spring", "framework");
props2.setProperty("Don", "Mattingly"); Properties props3 = new Properties();
props3.setProperty("spider", "man");
props3.setProperty("bat", "man"); pfb.setPropertiesArray(new Properties[] {props1, props2, props3});
pfb.afterPropertiesSet(); Properties props = (Properties) pfb.getObject();
assertEquals("99", props.getProperty("tb.array[0].age"));
assertEquals("value2", props.getProperty("key2"));
assertEquals("framework", props.getProperty("spring"));
assertEquals("Mattingly", props.getProperty("Don"));
assertEquals("man", props.getProperty("spider"));
assertEquals("man", props.getProperty("bat"));
} public void testWithPropertiesFileAndLocalPropertiesAndLocalOverride() throws Exception {
PropertiesFactoryBean pfb = new PropertiesFactoryBean();
pfb.setLocation(new ClassPathResource("/org/springframework/beans/factory/config/test.properties"));
Properties localProps = new Properties();
localProps.setProperty("key2", "value2");
localProps.setProperty("tb.array[0].age", "0");
pfb.setProperties(localProps);
pfb.setLocalOverride(true);
pfb.afterPropertiesSet();
Properties props = (Properties) pfb.getObject();
assertEquals("0", props.getProperty("tb.array[0].age"));
assertEquals("value2", props.getProperty("key2"));
} public void testWithPrototype() throws Exception {
PropertiesFactoryBean pfb = new PropertiesFactoryBean();
pfb.setSingleton(false);
pfb.setLocation(new ClassPathResource("/org/springframework/beans/factory/config/test.properties"));
Properties localProps = new Properties();
localProps.setProperty("key2", "value2");
pfb.setProperties(localProps);
pfb.afterPropertiesSet();
Properties props = (Properties) pfb.getObject();
assertEquals("99", props.getProperty("tb.array[0].age"));
assertEquals("value2", props.getProperty("key2"));
Properties newProps = (Properties) pfb.getObject();
assertTrue(props != newProps);
assertEquals("99", newProps.getProperty("tb.array[0].age"));
assertEquals("value2", newProps.getProperty("key2"));
} }

Spring中配置和读取多个Properties文件--转的更多相关文章

  1. Spring中配置和读取多个Properties文件

    一个系统中通常会存在如下一些以Properties形式存在的配置文件 1.数据库配置文件demo-db.properties: database.url=jdbc:mysql://localhost/ ...

  2. 在Spring中配置jdbc为什么不能用${username}问题

    楼主在spring中配置jdbc时,引用的是dbcp.jar包,在dataSource.properties配置文件中,有mysql用户名,楼主自然的选择了使用username,密码是root, 然后 ...

  3. Spring Boot配置,读取配置文件

    Spring Boot配置,读取配置文件 一.配置Spring Boot 1.1 服务器配置 1.2 使用其他Web服务器 1.3 配置启动信息 1.4 配置浏览器显示ico 1.5 Yaml语法 1 ...

  4. spring中配置监听队列的MQ

    一.spring中配置监听队列的MQ相关信息注:${}是读取propertites文件的常量,这里忽略.绿色部分配置在接收和发送端都要配置.  <bean id="axx" ...

  5. spring中配置数据源

    spring中配置数据源的几种常见方式: #mysql 数据库配置(jdbc.properties) jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.u ...

  6. 在Spring中配置SQL server 2000

    前言 Lz主要目的是在Spring中配置SQL server 2000数据库,但实现目的的过程中参差着许多SQL server 2000的知识,也包罗在本文记载下来!(Lz为什么要去搞sql serv ...

  7. spring 中配置sessionFactory及用法

    spring 中配置sessionFactory及用法 方法一: 1.在Spring的applicationContext.xml中配置bean <!-- 启用注解注入  -->      ...

  8. java如何读取和遍历properties文件

    在java项目开发过程中,使用properties文件作为配置基本上是必不可少的,很多如系统配置信息,文件上传配置信息等等都是以这种方式进行保存.同时学会操作properties文件也是java基础. ...

  9. Java中如何获取spring中配置的properties文件内容

    有2种方式: 一. 1.通过spring配置properties文件 [java]  <bean id="propertyConfigurer"      class=&qu ...

随机推荐

  1. Zend Studio安装详解

    本篇文章介绍Zend Stuido安装 PHP安装请参考 http://www.cnblogs.com/azhe-style/p/php_new_env_build.html 一.下载 百度Zend ...

  2. Invalid layout param in a LinarLayout: layout_weight

    android:layout_weight只适用于线性布局LinearLayout,不适用于相对布局RelativeLayout.

  3. win7+ubuntu双系统 重装win7后grub修复

    问题:之前安装的是win7+ubuntu双系统,重装win7后启动选项没有了,直接进入的是win7系统,无法进入ubuntu系统了. 解决办法:我们需要修复grub,将ubuntu系统重新挂载一下,具 ...

  4. 手动处理datanode磁盘间使用不均的问题

    http://wiki.apache.org/hadoop/FAQ#On_an_individual_data_node.2C_how_do_you_balance_the_blocks_on_the ...

  5. Neutron 理解 (9): OpenStack 是如何实现 Neutron 网络 和 Nova虚机 防火墙的 [How Nova Implements Security Group and How Neutron Implements Virtual Firewall]

    学习 Neutron 系列文章: (1)Neutron 所实现的虚拟化网络 (2)Neutron OpenvSwitch + VLAN 虚拟网络 (3)Neutron OpenvSwitch + GR ...

  6. 【读书笔记《Bootstrap 实战》】6.单页营销网站

    我们已经掌握了很多实用 Bootstrap  的重要技能.现在,是时候拿出更多的创意来帮助客户实现他们全方位在线营销的愿望了.此次将带领大家做一个漂亮的单页高端营销网站. 主要任务如下: □ 一个大型 ...

  7. 项目<<魔兽登录系统>>

    创建魔兽系统相关窗体: 登录窗体(frmLogin) 注册窗体(frmRegister) 主窗体   (frmMain) 实现魔兽登录系统: 登录的界面如下 实现思路: 1.创建一个对象数组,长度为1 ...

  8. WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable

    http://dl.bintray.com/sequenceiq/sequenceiq-bin/ http://www.secdoctor.com/html/yyjs/31101.html

  9. ReactNative官方中文文档0.21

    整理了一份ReactNative0.21中文文档,提供给需要的reactnative爱好者.ReactNative0.21中文文档.chm  百度盘下载:ReactNative0.21中文文档 来源: ...

  10. jQuery延迟加载插件(Lazy Load)详解

    最 新版本的Lazy Load并不能替代你的网页.即便你使用JavaScript移除了图片的src属性,有些现代的浏览器仍然会加载图片.现在你必须修改你的html代 码,使用占位图片作为img标签的s ...