1.xml占位符
<context:property-placeholder location="classpath*:common.properties" />@H_403_15@ 或者<bean id="configProperties" class="org.springframework.beans.factory.config.Propertiesfactorybean"> <property name="locations"> <list> <value>classpath:*common.properties</value> </list> </property> </bean> <!-- 可以将beanfactory定义中的一些属性值放到另一个单独的标准Java Properties文件中--> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"> <property name="properties" ref="configProperties"/> </bean>@H_403_15@
2.@value
<bean id="configProperties" class="org.springframework.beans.factory.config.Propertiesfactorybean"> <property name="locations"> <list> <value>classpath:*.properties</value> </list> </property> </bean> <!-- 可以将beanfactory定义中的一些属性值放到另一个单独的标准Java Properties文件中--> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"> <property name="properties" ref="configProperties"/> </bean>@H_403_15@