spring 环境切换

Posted deityjian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring 环境切换相关的知识,希望对你有一定的参考价值。

软件开发过程一般有三个阶段:开发 > 测试 > 生产。每个阶段都对应不同的数据库环境配置,我们希望通过一种自动切换的方式来减少手动切换的工作量,这样做的目的也是为了能够减少手工带来的出错率。

具体配置步骤如下:

1.在resource目录下建立每种环境对应的文件夹,用来存放配置文件。

 development文件夹 : 存放 dev.properties

 production文件夹 : 存放 produce.properties

 test 文件夹: 存放 test.properties

2. spring -mybatis.xml(spring的配置文件) 中设置profile。

    <!-- 开发环境配置文件 -->

    <beans profile="development">

        <context:property-placeholder

            location="classpath:development/*.properties" />

    </beans>

    <!-- 测试环境配置文件 -->

    <beans profile="test">

        <context:property-placeholder

            location="classpath:test/*.properties" />

    </beans>

    <!-- 生产环境配置文件 -->

    <beans profile="production">

        <context:property-placeholder

            location=" classpath:production/*.properties" />

    </beans>

需要注意的是:这部分配置需要放置在配置文件的最下面,否则会报错。

3. 激活profil: web.xml配置

<!-- 配置spring的profile --> 

<context-param> 

    <param-name>spring.profiles.active</param-name> 

    <param-value>development</param-value> 

</context-param>

以上是关于spring 环境切换的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 多环境(devtestprod)配置文件---命令行切换

spring boot 环境配置(profile)切换

spring boot 环境配置(profile)切换

Maven + Spring 进行多环境自动切换功能

在Idea中切换Spring Boot环境的五种方案

spring通过profile实现开发和测试环境切换