欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring加载properties文件

程序员文章站 2022-07-04 08:43:54
...

开发时我们通常需要加载配置文件,java提供的properties文件,以键值对的方式保存信息,这篇文章记录Spring加载配置文件的方法。

一、<context:property-placeholder location=""/>标签

<context:property-placeholder location="classpath:db.properties" />

通过<context:property-placeholder location=""/>标签,可以用来加载properties配置文件,location是配置文件的路径。

<context:property-placeholder location=""/>此标签支持单个文件的加载,不过可以使用通配符,如,classpath:db*.properties,这里指定了src下的db.properties文件,那么如何使用加载的文件呢,可以使用${name},注解中我们可以这样使用:@Value("${name}")

二、propertyPlaceholderConfigurer类

<bean id="appProperty"
	class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
	<property name="locations">
		<array>
			<value>classpath:quartz.properties</value>
			<value>classpath:db.properties</value>
		</array>
	</property>
</bean>

使用这种方式可以指定多个properties文件,只要配置多个<value>标签即可,这种方式和<context:property-placeholder />标签方式使用是一样的。

<context:property-placeholder location=""/>和配置PropertyPlaceholderConfigurer类的方式在spring的配置文件中只有一个起作用,即,假如都配置了,只有最先配置的才会被配置文件加载到,因为spring容器采用反射扫描机制,如果已经有一个PropertyPlaceholderConfigurer类的实例,那么就不会再创建了,因此使用其中一种方式即可。

三、PropertiesFactoryBean类

<bean id="configProperties"
	class="org.springframework.beans.factory.config.PropertiesFactoryBean">
	<property name="locations">
		<list>
			<value>classpath:quartz.properties</value>
			<value>classpath:db.properties</value>
		</list>
	</property>
</bean>
要使用这种方式加载的properties文件,需要使用#{beanId['键']},如上面的,#{configProperties['namel']},主要这里使用的是#不是上面使用的$。

上一篇: 单利模式

下一篇: LINQ 初学