xml中使用properties配置

在xml中加入:

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

<property name="locations">

<list>

<value>/WEB-INF/config/jdbc.properties</value>

</list>

</property>

</bean>


使用方法:${key}

你可能感兴趣的:(xml中使用properties配置)