spring

有时候需要从properties文件中加载配置,以前的方式是这样的:

<bean id="jdbcProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  

    <property name="locations">  

        <list>  

            <value>classpath*:/spring/jdbc.properties</value>  

        </list>  

    </property>  

</bean>  

 

最近发现这样也可以,代码更整洁:

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

 

需要在文件头中引入:

xmlns:context="http://www.springframework.org/schema/context"

xsi:schemaLocation="

http://www.springframework.org/schema/context 

http://www.springframework.org/schema/context/spring-context-3.0.xsd"

你可能感兴趣的:(spring)