springboot-多环境测试

Posted 栗常云

tags:

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

1、application.properties中添加spring.profiles.active=test

2、同级目录下创建application-dev.properties、application-test.properties、application-prod.properties三个文件。

3、定义端口

application-dev.properties中

#开发环境
server.port=8080

 

application-test.properties中

#测试环境
server.port=8081

 

pplication-prod.properties中

#生产环境
server.port=8082

 

备注:

在此一定要注意:

profile的配置文件可以按照application.properyies的放置位置一样,放于以下四个位置,

1.当前目录的 “/config”的子目录下

2.当前目录下

3.classpath根目录的“/config”包下

4.classpath的根目录下




以上是关于springboot-多环境测试的主要内容,如果未能解决你的问题,请参考以下文章

springboot-多环境测试

SpringBoot多个yml实现开发测试线上多环境

springboot 多环境配置

Swagger2 常用使用 及 SpringBoo 整合 Swagger2

Springboot的多环境配置

springboot基于maven多模块项目搭建(直接启动webApplication)