properties文件,xml占位符总结

前端之家收集整理的这篇文章主要介绍了properties文件,xml占位符总结前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的XML相关文章