`

Spring配置之PropertyPlaceholderConfigurer,PropertyOverrideConfigurer

阅读更多
PropertyPlaceholderConfigurer用于Spring 从外部属性文件中载入属性,并使用这些属性值替换Spring 配置文件中的占位符变量(${varible})。
BeanFactoryPostProcessor 接口是对Bean 工厂的后处理操作,Spring 的PropertyPlaceholderConfigurer 类是实现BeanFactoryProcessor 接口中非常有用的类。

Spring 的ApplicationContext 容器可以非常方便的使用PropertyPlaceholderConfigurer,只需通过简单的配置即可使用。
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
   <property name="location" value="jdbc.properties" />
</bean> 

如果需要使用多个配置文件可以使用PropertyPlaceholderConfigurer 的locations属性。
<bean id="configBean" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 
    <property name="locations"> 
         <list>
             <value>hello.properties</value> 
             <value>welcome.properties</value> 
             <value>other.properties</value>
         </list>
    </property>     
</bean>


properties文件的中的格式为:
#oracle :\u6570\u636e\u6e90
datasource.type=oracle
datasource.driverClassName=oracle.jdbc.driver.OracleDriver
datasource.url=jdbc:oracle:thin:@127.0.0.1:1521:orcl
#datasource.url=jdbc:oracle:thin:@192.168.1.2:1521:orcl
datasource.username=cpcim2
datasource.password=cpcim2


-------------------分割线--------------------
PropertyOverrideConfigurer,类似于PropertyPlaceholderConfigurer,但是与后者相比,前者对于bean属性可以有缺省值或者根本没有值。如果起覆盖作用的 Properties文件没有某个bean属性的内容,那么缺省的上下文定义将被使用。

注意:bean 工厂的定义并不会意识到被覆盖,所以仅仅察看XML定义文件并不能立刻明显地知道覆盖配置是否被使用了。在有多个PorpertyOverrideConfigurer对用一个bean属性定义了不同的值的时候,最后一个将取胜(取决于覆盖的机制)。

Properties文件的一行配置应该是如下的格式:
beanName.property=value,其中beanName是需要覆盖的bean的名字,property是需要覆盖的属性名
实体:
public  class Chinese {
    private String name;
    private String age;
    public String getAge(){
        return age;
    }
    public void setAge(String age){
        this.age = age;
    }
    public String getName(){
        return name;
    }
    public void setName(String name){
        this.name = name;
    }
}

配置文件:年龄age有注入值30


<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

<beans>

  <bean id="propertyConfigure" class="org.springframework.beans.factory.config.PropertyOverrideConfigurer">
     <property name="locations" value="classpath:Bean/propertytwo/person.properties">
     </property>
  </bean>
  <bean id="chinese" class="Bean.propertytwo.Chinese">
      <property name="age" value="30"></property>
        <property name="name" value="test">
      </property>
  </bean>
</beans>


属性文件,将age设置为26:

chinese.age=26

测试代码:
public static void main(String[] args) throws Exception {
        
        String path=new Test().getClass().getResource("/").getPath();
        String realpath=path.substring(1, path.length());
        ApplicationContext context=new FileSystemXmlApplicationContext(realpath+"/propertytwo.xml");

        Chinese p=(Chinese)context.getBean("chinese");
        System.out.println(p.getName()+p.getAge());
}



运行结果:
test26
可以看到,age已经被properties中的数值覆盖了,没有使用配置文件中的数值
分享到:
评论
4 楼 bjyzxxds 2011-08-23  
然后可以这么使用:
properties.getProperty("sm.webserviceurl")
3 楼 bjyzxxds 2011-08-23  
love297 写道
有没有尝试过 在bean中使用注解的方式 将properties属性值 注入到变量,类似:
@Value("${name}")
private String name;


可以,可以用注解的方式注入properties属性值:
在service实现类中:
import java.util.Properties;
@Resource(name = "TESTProperties")
Properties properties;


然后再spring配置文件中配置:
<bean id="propertyConfigurer"
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="location" value="classpath:TESTparam.properties" />
	</bean>

<bean id="TESTProperties"
		class="org.springframework.beans.factory.config.PropertiesFactoryBean">
		
		<property name="singleton" value="true" />
		<property name="properties">
			<props>
				<prop key="sm.webserviceurl">${sm.webserviceurl}</prop>
				<prop key="sm.webserviceport">${sm.webserviceport}</prop>
				<prop key="sm.username">${sm.username}</prop>
				<prop key="sm.password">${sm.password}</prop>
			</props>
		</property>
	</bean>


2 楼 bjyzxxds 2011-08-18  
love297 写道
有没有尝试过 在bean中使用注解的方式 将properties属性值 注入到变量,类似:
@Value("${name}")
private String name;


目前没有,你说的这种方式我试试看
1 楼 love297 2011-08-14  
有没有尝试过 在bean中使用注解的方式 将properties属性值 注入到变量,类似:
@Value("${name}")
private String name;

相关推荐

    基于Spring2.0的Property OverrideConfig Demo

    1. **Spring配置文件的扩展** - Spring 2.0引入了`PropertyPlaceholderConfigurer`,用于处理配置文件中的占位符,例如`${property_name}`。它会查找指定的属性源(如`application.properties`),并替换这些占位符...

    Spring 容器后处理器

    &lt;bean id="propertyOverrideConfigurer" class="org.springframework.beans.factory.config.PropertyOverrideConfigurer"&gt; &lt;value&gt;classpath:test-overrides.properties ``` 在这个示例中,`test-overrides....

    spring

    - **PropertyPlaceholderConfigurer** 和 **PropertyOverrideConfigurer**:用于在运行时动态替换Bean配置中的占位符。 ### 结论 Spring框架以其强大的功能和灵活性,成为Java企业级应用开发的首选框架之一。通过...

    Spring-Reference_zh_CN(Spring中文参考手册)

    6.8.3. 使用Spring IoC来配置AspectJ的切面 6.8.4. 在Spring应用中使用AspectJ Load-time weaving(LTW) 6.9. 其它资源 7. Spring AOP APIs 7.1. 简介 7.2. Spring中的切入点API 7.2.1. 概念 7.2.2. 切入点实施 ...

    spring-reference

    综上所述,Spring框架通过其强大的IoC容器提供了丰富的功能来帮助开发者更好地管理和配置应用程序中的对象及其依赖关系。通过对这些核心概念的理解和掌握,开发者可以更加高效地使用Spring框架进行软件开发。

    spring-reference.pdf

    1. **PropertyPlaceholderConfigurer**:用于在配置文件中解析占位符,将占位符替换为实际值。 2. **PropertyOverrideConfigurer**:用于覆盖已存在的Bean定义属性,通常用于环境特定的配置。 3. **自定义...

    spring.net中文手册在线版

    4.9.2.PropertyOverrideConfigurer类 4.10.使用alias节点为对象添加别名 4.11.IApplicationContext简介 4.12.配置应用程序上下文 4.12.1.注册自定义解析器 4.12.2.创建自定义资源处理器 4.12.3.配置类型别名 4.12.4....

    spring-reference1.2.pdf

    - **PropertyPlaceholderConfigurer**:用于替换配置文件中的占位符。 - **PropertyOverrideConfigurer**:允许覆盖已存在的属性值。 #### 3.8 注册额外的自定义PropertyEditors #### 3.9 使用alias元素为现有Bean...

Global site tag (gtag.js) - Google Analytics