在配置文件中配置Bean时,必须记住,将部署细节如文件路径、服务器地址、用户名和密码与Bean配置混在一起是不好的做法。通常,Bean配置由应用开发人员编写,而部署细节由部署人员或系统管理员配置。
Spring有一个PropertyPlaceholderConfigurer的Bean工厂后处理器,用来将部分Bean配置外部化为一个属性文件。你可以在Bean配置文件中使用${var}形式的变量,将从属性文件中加载属性并用它们替代变量。
比如classpath下有个user.proerties文件中记录的是用户名和密码,我们需要从这个文件中获取到并配置到Bean配置文件中。
user.proerties就记录了用户名和密码
username=oracle
password=oracle
然后我们要在Bean配置文件中使用PropertyPlaceholderConfigurer,很简单,打开一个标签,指定属性文件的地址就行了。并且使用${var}的方式获取属性文件中的值
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
">
<!-- 添加注解功能 -->
<context:annotation-config/>
<!-- 添加自动扫描 -->
<context:component-scan base-package="com.lkt.entity"></context:component-scan>
<context:property-placeholder location="user.properties"/>
<bean id="user" class="com.lkt.entity.User">
<property name="username" value="${username}"></property>
<property name="password" value="${password}"></property>
</bean>
</beans>
最后我们测试下,获取一个User的实例,并打印他们的username和password,会得到oracle和oracle