java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringBoot 多环境打包

SpringBoot多环境打包与配置文件排除实践记录

作者:https://blog.csdn.net/yangshangwei/article/details/143924118

本文介绍了SpringBoot项目多环境打包与配置文件排除实践,包括多环境配置的实现方法、打包时排除配置文件的方法以及动态加载外部配置文件的最佳实践,感兴趣的朋友跟随小编一起看看吧

Spring Boot 项目多环境打包与配置文件排除实践

在实际开发中,Spring Boot 项目通常需要适配不同的运行环境,例如开发环境、测试环境、生产环境等。这些环境下的配置可能包含敏感信息,例如数据库连接密码、API密钥等。因此,在项目打包时,我们不仅需要支持多环境配置,还要考虑如何排除敏感配置文件,以保证安全性。

多环境配置的实现方法打包时排除配置文件的方法动态加载外部配置文件的最佳实践

一、多环境配置的实现方法

1. 配置多环境文件

Spring Boot 默认加载 application.propertiesapplication.yml 配置文件。为了支持多环境配置,可以通过文件命名的方式区分环境,比如:

各环境配置文件可以定义不同的参数。例如,以下是开发和生产环境的数据库配置:

开发环境:application-dev.yml

server:
  port: 8081
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/dev_db
    username: dev_user
    password: dev_password

生产环境:application-prod.yml

server:
  port: 8080
spring:
  datasource:
    url: jdbc:mysql://prod-server:3306/prod_db
    username: prod_user
    password: prod_password

2. 动态切换环境

application.yml 中配置默认激活的环境:

spring:
  profiles:
    active: dev

通过命令行参数启动时动态指定环境:

java -jar your-application.jar --spring.profiles.active=prod

二、打包时排除配置文件的方法

在某些情况下,敏感的配置文件(如 application-prod.yml)可能包含生产环境的重要信息。我们希望这些文件在打包时被排除,而不是直接包含在最终的 JAR 包中。

1. 使用 Maven 排除配置文件

方法 1:通过 maven-resources-plugin

在 Maven 的 pom.xml 中,通过 maven-resources-plugin 在资源打包阶段排除文件:

<build>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <excludes>
                <exclude>application-prod.yml</exclude>
                <!-- 排查所有目录下的所有配置文件 <exclude>**/*.*</exclude> -->
            </excludes>
        </resource>
    </resources>
</build>

方法 2:通过 maven-assembly-plugin

使用 maven-assembly-plugin 自定义打包配置:

添加插件配置:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>3.3.0</version>
            <configuration>
                <descriptors>
                    <descriptor>src/main/assembly/assembly.xml</descriptor>
                </descriptors>
            </configuration>
        </plugin>
    </plugins>
</build>

创建 assembly.xml 文件:

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3">
    <id>jar-with-dependencies</id>
    <formats>
        <format>jar</format>
    </formats>
    <fileSets>
        <fileSet>
            <directory>${project.basedir}/src/main/resources</directory>
            <excludes>
                <exclude>application-prod.yml</exclude>
            </excludes>
        </fileSet>
    </fileSets>
</assembly>

执行构建命令:

mvn clean package

2. 使用 Gradle 排除配置文件

在 Gradle 的 build.gradle 文件中,可以通过 processResources 任务排除文件:

tasks.processResources {
    exclude 'application-prod.yml'
}

构建时运行:

./gradlew clean build

三、动态加载外部配置文件

为了进一步提高安全性,我们可以将敏感配置文件存储在外部,并通过动态加载的方式使用这些文件。

1. 存放外部配置文件

将敏感的配置文件(如 application-prod.yml)存放在服务器的安全路径,例如 /etc/app-config/

2. 启动时指定外部配置路径

通过启动参数 --spring.config.location 指定外部配置文件的路径:

java -jar your-application.jar --spring.config.location=/etc/app-config/application-prod.yml

3. 配置环境变量

将配置路径指定为环境变量,启动时自动加载:

export SPRING_CONFIG_LOCATION=/etc/app-config/
java -jar your-application.jar

4. 在配置文件中指定额外路径

在主配置文件中,使用 spring.config.additional-location 指定额外的加载路径:

spring:
  config:
    additional-location: file:/etc/app-config/application-prod.yml

四、总结

多环境配置

配置文件排除

动态加载外部配置

推荐实践

到此这篇关于SpringBoot - 多环境打包与配置文件排除实践的文章就介绍到这了,更多相关SpringBoot 多环境打包内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文