springboot配置多环境配置文件

SpringBoot 配置多环境配置文件

1、准备多个配置文件

springboot配置多环境配置文件_第1张图片

2、application.yml

也可以把公共配置放入此配置文件

3、# 更改配置文件环境
spring:
  profiles:
    # 配置文件后缀
    active: @spring.profiles.active@
# 公共配置信息
# ......

3、pom.xml

<profiles>
    <profile>
        <id>devid>
        <activation>
            
            <activeByDefault>trueactiveByDefault>
        activation>
        <properties>
            <spring.profiles.active>devspring.profiles.active>
        properties>
    profile>
    <profile>
        <id>prodid>
        <properties>
            <spring.profiles.active>prodspring.profiles.active>
        properties>
    profile>
profiles>

4、选择对应环境

springboot配置多环境配置文件_第2张图片

你可能感兴趣的:(spring全家桶,spring,boot,spring,java)