1. 程式人生 > >spring裡配置多個屬性檔案與@Value

spring裡配置多個屬性檔案與@Value

1,專案在spring裡配置多個屬性檔案:

<bean id="propertyPlaceholderConfigurer"
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations">
			<array>
				<value>classpath:jdbc.properties</value>
				<value>classpath:email-config.properties</value>

			</array>

		</property>
	</bean>