application.xml中配置文件properties导入

<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:jdbc.properties</value>
<value>classpath:sysconfig.properties</value>
</list>
</property>
</bean>

<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="classpath:jdbc_config.properties" />
</bean>

这样之后可以在其中使用properties中的属性,通过${}的方式引入。

上一篇:【转】研华Adam6060某段时间后无法连接的问题


下一篇:MXNet 中的几个数据集