多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] # 简介 * 在配置文件里配置Bean时,有时需要在Bean的配置里混入系统部署的细节信息(例如:文件路径,数据源配置信息等).而这些部署细节实际上需要和Bean配置相分离 * Spring提供了一个PropertyPlaceholderConfigurer的BeanFactory后置处理器,这个处理器允许用户将Bean配置的部分内容外移到属性文件,可以在Bean配置文件里使用形式为`${var}`的变量,PropertyPlaceholderConfigurer从属性文件里加载属性,并使用这些属性来替换变量 * spring还允许在属性文件中使用`${propName}`,以试下属性之间的相互引用 # 注册PropertyPlaceholderConfigurer spring2.0 ~~~ <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:jdbc.properties"></property> </bean> ~~~ spring2.5之后,可通过`<context:property-placeholder>`元素简化 `<beans>`中添加context schema定义 在配置文件中加入如下配置 ~~~ <context:property-placeholder location="classpath:db.properties" /> ~~~ # 例子 创建properties ~~~ jdbc.username=x ~~~ xml中配置 ~~~ <context:property-placeholder location="classpath:jdbc.properties" /> <bean id="user1" class="com.spring.User"> <property name="name" value="${jdbc.username}" /> </bean> ~~~