SpringBoot切换不同的配置文件

1,Java参数切换配置文件

创建  application-test.properties 文件

2,配置文件里面手动设定

添加  spring.profiles.active=test 后端口启动为8081

3,Maven控制默认配置(高级)

    <!-- 配置maven占位符,profiles译为配置文件-->
    <profiles>
        <!-- 配置需要切换的环境 -->
        <profile>
            <id>dev</id>
            <!-- properties下的每个子标签可以理解为一个配置 -->
            <properties>
                <!-- 标签名为自定义-->
                <runtime-profile>dev</runtime-profile>
                <custom>This is custom</custom>
            </properties>
        </profile>
        <profile>
            <id>test</id>
            <properties>
                <runtime-profile>test</runtime-profile>
            </properties>
        </profile>
        <profile>
            <id>prod</id>
            <properties>
                <runtime-profile></runtime-profile>
            </properties>
        </profile>
    </profiles>
    <build>
        <!-- 配置文件中占位符生效 -->
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>

通过 spring.profiles.active=@runtime-profile@ 可以动态读取配置

Maven控制配置文件比较适合打包时 -Ptest 使用,本地运行代码会出现不生效情况

mvn clean package -Pdev

4,自定义静态资源的加载位置:

web.resources.static-locations=classpath:/prod-static/

5,指定Maven编译的版本

<plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-compiler-plugin</artifactId>
     <version>3.8.1</version>
     <configuration>
          <source>1.8</source>
          <target>1.8</target>
          <encoding>UTF-8</encoding>
     </configuration>
</plugin>

6,设置Maven打包和部署

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <version>${spring-boot.version}</version>
         <configuration>
              <skip>true</skip>
         </configuration>
            <executions>
               <execution>
                    <id>repackage</id>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
               </execution>
            </executions>
</plugin>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值