1.xml占位符
<context:property-placeholder location="classpath*:common.properties" />或者
<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>
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>原文链接:https://www.f2er.com/xml/293809.html