context:property-placeholder(转)

本文详细介绍了在Spring框架中利用context:property-placeholder配置文件加载数据库配置的便捷方式,包括配置文件的格式、如何引用配置文件及解决多模块集成时的冲突问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

转:http://blog.youkuaiyun.com/sunhuwh/article/details/15813103

 

这个在spring中配置文件中是非常常用的。

context:property-placeholder大大的方便了我们数据库的配置。

 

[html]  view plain copy
 
  1. 只需要在spring的配置文件里添加一句:<context:property-placeholder?location="classpath:jdbc.properties"/>?即可,这里location值为参数配置文件的位置,参数配置文件通常放在src目录下,而参数配置文件的格式跟java通用的参数配置文件相同,即键值对的形式,例如:  
  2.   
  3. #jdbc配置  
  4.   
  5. test.jdbc.driverClassName=com.mysql.jdbc.Driver  
  6. test.jdbc.url=jdbc:mysql://localhost:3306/test  
  7. test.jdbc.username=root  
  8. test.jdbc.password=root  


这样一来就可以为spring配置的bean的属性设置值了,比如spring有一个jdbc数据源的类DriverManagerDataSource

 

在配置文件里这么定义bean:

<bean id="testDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${test.jdbc.driverClassName}"/>
<property name="url" value="${test.jdbc.url}"/>
<property name="username" value="${test.jdbc.username}"/>
<property name="password" value="${test.jdbc.password}"/>
</bean>

这样修改起来也方便,也统一的这个规范。

 

另外需要注意的是,如果遇到下面着着这种问题:

A模块和B模块都分别拥有自己的Spring XML配置,并分别拥有自己的配置文件:

A模块的Spring配置文件如下:

[html]  view plain copy
 
  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:context="http://www.springframework.org/schema/context"  
  5.        xmlns:p="http://www.springframework.org/schema/p"  
  6.        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd  
  7.        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">  
  8.    <context:property-placeholder location="classpath*:conf/conf_a.properties"/>  
  9.    <bean class="com.xxx.aaa.Bean1"  
  10.           p:driverClassName="${modulea.jdbc.driverClassName}"  
  11.           p:url="${modulea.jdbc.url}"  
  12.           p:username="${modulea.jdbc.username}"  
  13.           p:password="${modulea.jdbc.password}"/>  
  14. </beans>  
conf/conf_a.properties:
[html]  view plain copy
 
  1. modulea.jdbc.driverClassName=com.mysql.jdbc.Driver  
  2. modulea.jdbc.username=cartan  
  3. modulea.jdbc.password=superman  
  4. modulea.jdbc.url=jdbc:mysql://127.0.0.1:3306/modulea?useUnicode=true&characterEncoding=utf8  


B模块的Spring配置文件如下:
[html]  view plain copy
 
  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:context="http://www.springframework.org/schema/context"    
  5.        xmlns:p="http://www.springframework.org/schema/p"    
  6.        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd    
  7.        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">    
  8.    <context:property-placeholder location="classpath*:conf/conf_b.properties"/>    
  9.    <bean class="com.xxx.bbb.Bean1"    
  10.           p:driverClassName="${moduleb.jdbc.driverClassName}"    
  11.           p:url="${moduleb.jdbc.url}"    
  12.           p:username="${moduleb.jdbc.username}"    
  13.           p:password="${moduleb.jdbc.password}"/>    
  14. </beans>    
conf/conf_b.properties:
[html]  view plain copy
 
  1. moduleb.jdbc.driverClassName=com.mysql.jdbc.Driver  
  2. moduleb.jdbc.username=cartan  
  3. moduleb.jdbc.password=superman  
  4. moduleb.jdbc.url=jdbc:mysql://127.0.0.1:3306/modulea?useUnicode=true&characterEncoding=utf8  

单独运行A模块,或单独运行B模块都是正常的,但将A和B两个模块集成后运行,Spring容器就启动不了了:
Could not resolve placeholder 'moduleb.jdbc.driverClassName' in string value "${moduleb.jdbc.driverClassName}"
原因:Spring容器采用反射扫描的发现机制,在探测到Spring容器中有一个org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的Bean就会停止对剩余PropertyPlaceholderConfigurer的扫描

spring容器中最多只能定义一个context:property-placeholder,不然就出现那种个错误,那如何来解决上面的问题呢?

 

A和B模块去掉

[html]  view plain copy
 
  1. <context:property-placeholder location="classpath*:conf/conf_b.properties"/>   

 

然后重新写个xml:

 

[html]  view plain copy
 
  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:context="http://www.springframework.org/schema/context"  
  5.        xmlns:p="http://www.springframework.org/schema/p"  
  6.        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd  
  7.        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">  
  8.    <context:property-placeholder location="classpath*:conf/conf*.properties"/>  
  9.    <import resource="a.xml"/>  
  10.    <import resource="b.xml"/>  
  11. </beans>  
<think>我们正在处理一个关于Spring框架中`<context:property-placeholder>`的用法和配置问题。根据用户需求,我们需要提供清晰的结构化回答,并确保使用正确的中文和LaTeX格式。首先,回顾引用内容:-引用[1]提到SpringBoot默认配置了`PropertySourcesPlaceholderConfigurer`,从`application.properties`和`application.yml`获取属性。-引用[2]提到Spring提供了一个默认的宽松嵌入式值解析器,如果无法解析则注入属性名;要严格控制不存在的值,需要声明`PropertySourcesPlaceholderConfigurer`。-引用[3]展示了`resolvePlaceholders()`方法如何通过`propertyResolver`解析占位符。用户的问题是关于SpringXML配置中的`<context:property-placeholder>`,它用于在XML配置文件中解析属性占位符(如`${property.name}`)。###回答结构1.**介绍**:解释`<context:property-placeholder>`的作用。2.**基本配置**:展示基本用法和常用属性。3.**属性详解**:解释关键属性(如`location`、`ignore-resource-not-found`等)。4.**注意事项**:包括与SpringBoot的自动配置的对比以及多个配置的处理。5.**示例**:给出一个完整的配置示例。###生成相关问题根据主题,生成3个相关问题。###开始回答</think>### Spring context:property-placeholder 用法与配置 `<context:property-placeholder>` 是 Spring 框架中用于外部化配置的核心 XML 元素,它通过 `PropertySourcesPlaceholderConfigurer` 实现属性占位符解析(如 `${db.url}`)。以下是详细说明: #### 1. **核心作用** - **占位符解析**:在 XML 或注解配置中解析 `${...}` 格式的属性值,例如: ```xml <bean class="com.example.DataSource"> <property name="url" value="${db.url}"/> </bean> ``` - **外部化配置**:将属性值从代码分离到外部文件(如 `.properties`),便于环境切换[^1]。 #### 2. **基础配置** ```xml <context:property-placeholder location="classpath:db.properties,file:/etc/app/config.properties" ignore-resource-not-found="true" ignore-unresolvable="true" system-properties-mode="OVERRIDE" /> ``` - **`location`**:属性文件路径,支持多个文件(逗号分隔)和通配符(`classpath*:/config/*.properties`)。 - **`ignore-resource-not-found`**:是否忽略缺失文件(默认 `false`,缺失时报错)。 - **`ignore-unresolvable``**:是否忽略无法解析的占位符(默认 `false`,未匹配时报错)。 - **`system-properties-mode`**:系统属性优先级(`ENVIRONMENT`/`OVERRIDE`/`NEVER`)。 #### 3. **关键机制** - **解析顺序**:按 `location` 顺序加载属性,后加载的值覆盖先加载的值。 - **宽松模式**:默认行为下,未解析的占位符(如 `${unknown}`)会直接注入原始字符串。需显式设置 `ignore-unresolvable="false"` 强制严格校验[^2]。 - **与 Spring Boot 区别**:Spring Boot 自动配置 `PropertySourcesPlaceholderConfigurer`,优先从 `application.properties` 加载[^1]。XML 配置需手动声明。 #### 4. **高级配置** 若需完全控制解析行为,可显式定义 `PropertySourcesPlaceholderConfigurer` bean: ```xml <bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:default.properties</value> <value>file:${CONF_DIR}/override.properties</value> </list> </property> <property name="ignoreUnresolvablePlaceholders" value="true"/> <property name="valueSeparator" value=":"/> <!-- 修改占位符分隔符为 ${key:default} --> </bean> ``` - **自定义占位符**:通过 `setPlaceholderPrefix`/`setPlaceholderSuffix` 修改 `${` 和 `}` 符号。 - **默认值支持**:使用 `:` 指定默认值,如 `${db.port:3306}`[^1]。 #### 5. **注意事项** - **避免重复声明**:多个 `<context:property-placeholder>` 会导致解析冲突,应合并配置。 - **Profile 支持**:结合 Spring Profiles 可环境差异化加载属性: ```xml <context:property-placeholder location="classpath:config-${spring.profiles.active}.properties"/> ``` - **加密属性**:需集成工具(如 Jasypt)解密 `${cipher:ENCRYPTED_VALUE}` 格式的值。 > **示例属性文件** (`db.properties`): > ``` > db.url=jdbc:mysql://localhost:3306/mydb > db.user=admin > db.password=secret > ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值