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

spring管理properties文件加载

程序员文章站 2022-05-23 07:53:11
...

spring中property用来存放application的设定值。

在applicationContext.xml中load进去,spring中定义了二种方式

1. 注解

    spring2.5

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

    spring3.0

<context:property-placeholder location="classpath:file1.properties,classpath:file2.properties,classpath:file3.properties" ignore-unresolvable="true"/>

 

 

2. bean

	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
		<property name="ignoreResourceNotFound" value="true" />
		<property name="locations">
			<list>
				<value>classpath*:/application.properties</value>
				<value>classpath*:/×.properties</value>
			</list>
		</property>
	</bean>