使用spring.profiles.active 配置正式環境,測試環境web
配置方式:spring
一、在spring配置文件中配置兩種環境信息tomcat
<beans profile="dev"> 測試
<context:property-placeholder location="classpath:jdbc-dev.properties"/> spa
</beans>xml
<beans profile="prd"> io
<context:property-placeholder location="classpath:jdbc-prd.properties"/> class
</beans>
配置
二、在web.xml中配置使用哪一種環境信息,tomcat啓動的時候自動去加載對應的環境信息file
<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>dev</param-value>
</context-param>