在项目中如果有些参数经常需要修改,或者后期可能需要修改,那我们最好把这些参数放到properties文件中,源代码中读取properties里面的配置,这样后期只需要改动properties文件即可,不需要修改源代码,这样更加方便。在Spring中也可以这么做,而且Spring有两种加载properties文件的方式:基于xml方式和基于注解方式。下面分别讨论下这两种方式。
1. 通过xml方式加载properties文件
我们以Spring实例化dataSource为例,我们一般会在beans.xml文件中进行如下配置:
[html]
1. <!-- com.mchange.v2.c3p0.ComboPooledDataSource类在c3p0-0.9.5.1.jar包的com.mchange.v2.c3p0包中 -->
2. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
3. <property name="driverClass" value="com.mysql.jdbc.Driver" />
4. <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/shop" />
5. <property name="user" value="root" />
6. <property name="password" value="root" />
7. </bean>
现在如果我们要改变dataSource,我们就得修改这些源代码,但是我们如果使用properties文件的话,只需要修改那里面的即可,就不管源代码的东西了。那么如何做呢?
Spring中有个<context:property-placeholder location=""/>标签,可以用来加载properties配置文件,location是配置文件的路径,我们现在在工程目录的src下新建一个conn.properties文件,里面写上上面dataSource的配置:
[plain]
1. dataSource=com.mchange.v2.c3p0.ComboPooledDataSource
2. driverClass=com.mysql.jdbc.Driver
3. jdbcUrl=jdbc\:mysql\://localhost\:3306/shop
4. user=root
5. password=root
现在只需要在beans.xml中做如下修改即可:
[html]
1. <context:property-placeholder location="classpath:conn.properties"/><!-- 加载配置文件 -->
2.
3. <!-- com.mchange.v2.c3p0.ComboPooledDataSource类在c3p0-0.9.5.1.jar包的com.mchange.v2.c3p0包中 -->
4. <bean id="dataSource" class="${dataSource}"> <!-- 这些配置Spring在启动时会去conn.properties中找 -->
5. <property name="driverClass" value="${driverClass}" />
6. <property name="jdbcUrl" value="${jdbcUrl}" />
7. <property name="user" value="${user}" />
8. <property name="password" value="${password}" />
9. </bean>
<context:property-placeholder location=""/>标签也可以用下面的<bean>标签来代替,<bean>标签我们更加熟悉,可读性更强:
[html]
1. <!-- 与上面的配置等价,下面的更容易理解 -->
2. <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
3. <property name="locations"> <!-- PropertyPlaceholderConfigurer类中有个locations属性,接收的是一个数组,即我们可以在下面配好多个properties文件 -->
4. <array>
5. <value>classpath:conn.properties</value>
6. </array>
7. </property>
8. </bean>
虽然看起来没有上面的<context:property-placeholder location=""/>简洁,但是更加清晰,建议使用后面的这种。但是这个只限于xml的方式,即在beans.xml中用${key}获取配置文件中的值value。
2. 通过注解方式加载properties文件
还有一种就是通过注解的方式,在java代码中使用@Value注解来加载配置文件中的值。
我们来看一个例子:假如我们要在程序中获取某个文件的绝对路径,我们很自然会想到不能在程序中写死,那么我们也可以卸载properties文件中。还是在src目录下新建一个public.properties文件,假设里面写了一条记录:
[plain]
1. filePath=E\:\\web\\apache-tomcat-8.0.26\\webapps\\E_shop\\image
如果想在java代码中通过注解来获取这个filePath的话,首先得在beans.xml文件中配置一下注解的方式:
[html]
1. <!-- 第二种方式是使用注解的方式注入,主要用在java代码中使用注解注入properties文件中相应的value值 -->
2. <bean id="prop" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
3. <property name="locations"><!-- 这里是PropertiesFactoryBean类,它也有个locations属性,也是接收一个数组,跟上面一样
4. <array>
5. <value>classpath:public.properties</value>
6. </array>
7. </property>
8. </bean>
现在我们可以在java代码中使用注解来获取filePath的值了:
1. @Component("fileUpload")
2. public class FileUploadUtil implements FileUpload {
3.
4. private String filePath;
5. @Value("#{prop.filePath}")
6. //@Value表示去beans.xml文件中找id="prop"的bean,它是通过注解的方式读取properties配置文件的,然后去相应的配置文件中读取key=filePath的对应的value值
7. public void setFilePath(String filePath) {
8. System.out.println(filePath);
9. this.filePath = filePath;
10. }
注意要有set方法才能被注入进来,注解写在set方法上即可。在setFilePath方法中通过控制台打印filePath是为了在启动tomcat的时候,观察控制台有没有输出来,如果有,说明Spring在启动时,已经将filePath给加载好了,我们看一下控制台的启动信息: