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}”
正文到此结束
- 本文标签: Spring Spring Boot
- 本文链接: https://code.jiangjiesheng.cn/article/20
- 版权声明: 本文由小江同学原创发布,转载请先联系本站长,谢谢。