写点什么

第十二节:Springboot 多环境配置

作者:入门小站
  • 2022 年 2 月 16 日
  • 本文字数:1776 字

    阅读完需:约 6 分钟

第十二节:Springboot多环境配置

开发的阶段会需要设定基本的属性或是自定义的属性,而且通常会被应用和安装到几个不同的环境上,比如:开发(dev)、测试(test)、生产(prod)等,其中对应的每个环境的数据库地址、服务器端口等等配置都会不同,如果在为不同环境打包时都要频繁修改配置文件的话,那必将是个非常繁琐且容易发生错误。


通常有下面两种配置方式

1.maven 的多环境配置

在没有使用过 Spring Boot 的多环境配置时,是用 maven 的 profile 功能进行多环境配置。


maven 配置 pom.xml


<profiles>       <profile>          <id>dev</id>          <activation>                <activeByDefault>true</activeByDefault>            </activation>            <properties>               <pom.port>8080</pom.port>            </properties>       </profile>       <profile>          <id>test</id>            <properties>               <pom.port>8888</pom.port>            </properties>       </profile></profiles><build>    <resources>        <resource>            <directory>src/main/resources</directory>            <includes>                <include>**/*</include>            </includes>        </resource>        <resource>            <directory>${project.basedir}/src/main/resources</directory>            <includes>                <include>**/*.properties</include>            </includes>            <filtering>true</filtering>        </resource>    </resources>    <plugins>        <!--这个很重要-->        <plugin>            <artifactId>maven-resources-plugin</artifactId>            <configuration>                <encoding>utf-8</encoding>                <!-- 需要加入,因为maven预设的是${},而springbooot 预设会把此替换成@{} -->                <useDefaultDelimiters>true</useDefaultDelimiters>            </configuration>        </plugin>        <plugin>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-maven-plugin</artifactId>        </plugin>    </plugins></build>
复制代码


application.properties 的配置


server.port=${pom.port}
复制代码


编译打包项目


> mvn clean install -DskipTests -Ptest
复制代码


-Ptest表示编译为测试环境,对应<profile>下的<id>test</id>

2.SpringBooot 的多环境配置

在 Spring Boot 中多环境配置文件名需要满足application-{profile}.properties的格式,其中{profile}对应你的环境标识。


application-dev.properties:开发环境application-test.properties:测试环境application-prod.properties:生产环境
复制代码


而决定使用哪种环境的的配置文件,需要在application.properties中通过spring.profiles.active属性来设定,其值对应{profile}值。


application.properties的配置


# 指定dev開發環境spring.profiles.active=dev
复制代码


spring.profiles.active=dev 就会载入application-dev.properties 配置文件内容

测试

三个配置文件application-dev.propertiesapplication-test.propertiesapplication-prod.properties


三个文件的 server.port属性不一样,


  • application-dev.properties server.port=8081

  • application-test.properties server.port=8082

  • application-prod.properties server.port=8080


运行测试


# 运行端口被改成8081> java -jar rumenz.jar --spring.profiles.active=dev  
# 运行端口被改成8082> java -jar rumenz.jar --spring.profiles.active=test

# 运行端口被改成8080> java -jar rumenz.jar --spring.profiles.active=prod
复制代码


本小结源码地址:


  • GitHub:https://github.com/mifunc/springboot/tree/main/lession12

  • Gitee:https://gitee.com/rumenz/springboot/tree/master/lession12

  • https://rumenz.com/rumenbiji/springboot-multiple-env.html

  • 我的博客 https://rumenz.com/

  • 我的工具箱 https://tooltt.com/

  • 微信公众号:【入门小站】



  • 关注【入门小站】回复【1001】获取 linux 常用命令速查手册

  • 关注【入门小站】回复【1003】获取 LeetCode 题解【java 语言实现】

  • 关注【入门小站】回复【1004】获取 Java 基础核心总结

  • 关注【入门小站】回复【1009】获取 阿里巴巴 Java 开发手册

发布于: 刚刚阅读数: 2
用户头像

入门小站

关注

还未添加个人签名 2020.01.18 加入

还未添加个人简介

评论

发布
暂无评论
第十二节:Springboot多环境配置