web项目使用profile实现配置切换

Posted 进化论

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web项目使用profile实现配置切换相关的知识,希望对你有一定的参考价值。

场景:一个web项目,可能有 (开发,测试,生产)几个环境 ,如db.properties url有多个,开发可能是 127.0.0.1 ,测试环境可能是 192.168.8.88,生产环境 www.xxx.com,需要根据环境使用相应的配置

问题:上线的时候可能会频繁的去改配置,导致一些不必出现的问题

实现方法:

  1.可以为db.properties分为上述三个环境 db_dev db_debug db_realease

   2.定义 beans 使用profile来指定具体的环境,如 realease

<beans profile="realease">
    <context:property-placeholder location="classpath:com/config/dev/db.properties" ignore-unresolvable="true"/>

</beans>

  3.在web.xml中增加spring可识别的配置

  

 <!-- 切换环境 -->
    <context-param>
        <param-name>spring.profiles.active</param-name>
        <param-value>realease</param-value>
    </context-param>

 

以上是关于web项目使用profile实现配置切换的主要内容,如果未能解决你的问题,请参考以下文章

使用Profiles标签实现多环境切换

如何部署同一个Spring boot web 应用到不同的环境

SpringBoot 通过 Profile 实现不同环境下的配置切换

如何使用导航组件切换到不同后堆栈中的其他片段?

springboot 多环境配置和切换

maven配置profile,按指定环境打包