原创

Spring-Resources中的properties读取另一个文件中的properties

方法1: <context:property-placeholder location="classpath:conn.properties"/><!-- 加载配置文件 --> 、 方法2: <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:datasource.properties</value> </list> <!--或者 可加载多个资源<array> <value>classpath:datasource.properties</value> </array>--> </property> </bean> 取值: value=“${port}”
正文到此结束
本文目录