使用spring.profiles.active 配置正式环境,测试环境
配置方式:
1、在spring配置文件中配置两种环境信息
<beans profile="dev">
<context:property-placeholder location="classpath:jdbc-dev.properties"/>
</beans>
<beans profile="prd">
<context:property-placeholder location="classpath:jdbc-prd.properties"/>
</beans>
2、在web.xml中配置使用哪种环境信息,tomcat启动的时候自动去加载对应的环境信息
<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>dev</param-value>
</context-param>
原文地址:https://www.cnblogs.com/zhao-gang/p/8445139.html
时间: 2024-10-10 04:29:30