ChatGPT解决这个技术问题 Extra ChatGPT

通过 Maven 在 SpringBoot 中配置活动配置文件

我正在尝试使用 Maven 3 在 Spring Boot 应用程序中设置活动配置文件。在我的 pom.xml 中,我将默认活动配置文件和属性 spring.profiles.active 设置为开发:

<profiles>
    <profile>
        <id>development</id>
        <properties>
            <spring.profiles.active>development</spring.profiles.active>
        </properties>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
    </profile>
</profiles>

但每次我运行我的应用程序时,我都会在日志中收到以下消息:

No active profile set, falling back to default profiles: default

并且 SpringBoot 配置文件设置为默认值(读取 application.properties 而不是 application-development.properties) 我应该怎么做才能使用 Maven 配置文件设置我的 SpringBoot 活动配置文件?任何帮助高度赞赏。


D
Daniel Olszewski

Maven 配置文件和 Spring 配置文件是两个完全不同的东西。您的 pom.xml 定义了 spring.profiles.active 变量,该变量在构建过程中可用,但在运行时不可用。这就是为什么只激活默认配置文件的原因。

如何将 Maven 配置文件与 Spring 绑定?

您需要将构建变量传递给您的应用程序,以便它在启动时可用。

在 application.properties 中定义一个占位符: spring.profiles.active=@spring.profiles.active@ @spring.profiles.active@ 变量必须与 Maven 配置文件中声明的属性匹配。在 pom.xml 中启用资源过滤: src/main/resources true ... 执行构建时,src/main/resources 目录中的所有文件都将由 Maven 处理,并且 application.properties 中的占位符将替换为您在 Maven 配置文件中定义的变量。

有关更多详细信息,您可以go to my post在我描述此用例的地方。


有没有办法通过 maven 命令为单元测试启用配置文件?也许您对 this question. 有想法
我只想补充一点,您可以使用 commamd mvn package -P myProfile 设置活动配置文件,其中我的配置文件在 POM 中定义
B
Brent Bradburn

或者更容易:

mvn spring-boot:run -Dspring-boot.run.profiles={profile_name}

虽然这没有回答“如何通过 maven 设置 springboot 活动配置文件”的问题,但它给了我“如何设置 springboot:运行活动配置文件”的答案。
使用 Spring2.x,spring.profiles.active 设置不起作用,无论是直接还是通过 jvmArguments。感谢你的回答
P
Pankaj Jaiswal

有多种方法可以为您的 springboot 应用程序设置配置文件。

您可以在属性文件中添加它: spring.profiles.active=dev 编程方式: SpringApplication.setAdditionalProfiles("dev");测试可以很容易地指定哪些配置文件处于活动状态 @ActiveProfiles("dev") 在 Unix 环境中 export spring_profiles_active=dev JVM 系统参数 -Dspring.profiles.active=dev

示例:运行带有配置文件的 springboot jar 文件。

java -jar -Dspring.profiles.active=dev application.jar

>你可以在你的属性文件中添加这个:在哪个属性文件中?因为需要配置文件来获取相应的 application.xxx.properties
T
Thomas Fritsch

您可以使用以下命令运行。在这里,我想使用 spring 配置文件 local 运行:

spring-boot:run -Drun.jvmArguments="-Dspring.profiles.active=local"


最佳答案!在 mac os 10.13.3 上使用 maven 3.5.2 + java 1.8 + spring-boot-1.5.9.RELEASE 为我工作
我在哪里添加它?
d
davidxxx

在开发中,当激活特定的 Maven 配置文件时激活 Spring Boot 配置文件是直接的。您应该在 Maven 配置文件中使用 spring-boot-maven-plugin 中的 the profiles property,例如:

<project>
    <...>
    <profiles>
        <profile>
            <id>development</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-maven-plugin</artifactId>
                        <configuration>
                            <profiles>
                                <profile>development</profile>
                            </profiles>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    <profiles>
    </...>
</project>

您可以运行以下命令来同时使用 Spring Boot 和 Maven development 配置文件:

mvn spring-boot:run -Pdevelopment

如果您希望能够将任何 Spring Boot 配置文件映射到具有相同配置文件名称的 Maven 配置文件,您可以定义一个 Maven 配置文件并在检测到 Maven 属性的存在时启用它。此属性将是您在运行 mvn 命令时需要指定的唯一内容。
配置文件如下所示:

    <profile>
        <id>spring-profile-active</id>
        <activation>
            <property>
                <name>my.active.spring.profiles</name>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <configuration>
                        <profiles>
                            <profile>${my.active.spring.profiles}</profile>
                        </profiles>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

您可以运行以下命令来同时使用 Spring Boot 和 Maven development 配置文件:

mvn spring-boot:run -Dmy.active.spring.profiles=development

或者 :

mvn spring-boot:run -Dmy.active.spring.profiles=integration

或者 :

 mvn spring-boot:run -Dmy.active.spring.profiles=production

所以对于...

这种配置很有意义,因为在通用 Maven 配置文件中,您依赖传递的 my.active.spring.profiles 属性来执行某些任务或为某些事情赋值。
例如,我使用这种方式来配置一个通用 Maven 配置文件,该配置文件将应用程序并构建特定于所选环境的 docker 映像。


S
SaWo

您应该使用 Spring Boot Maven 插件:

<project>  
  ...
  <build>
    ...
    <plugins>
      ...
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <version>1.5.1.RELEASE</version>
        <configuration>
          <profiles>
            <profile>foo</profile>
            <profile>bar</profile>
          </profiles>
        </configuration>
        ...
      </plugin>
      ...
    </plugins>
    ...
  </build>
  ...
</project>

更容易,更快,更清洁,没有任何头部碰撞。为我 +1
Ö
Özlem Pamuk

我想在不同的环境中运行自动化测试。所以我将它添加到命令 maven 命令中:

spring-boot:run -Drun.jvmArguments="-Dspring.profiles.active=productionEnv1"

这是我找到解决方案的链接:[1]https://github.com/spring-projects/spring-boot/issues/1095


mvn spring-boot:run -Drun:jvmArguments="-Dspring.profiles.active=prod" -->当我运行它时,我仍然得到 No active profile set, falling back to default profiles: default
L
Lukasmp3

如果您只想将其用于测试,我想澄清 Daniel Olszewski 的出色答案 https://stackoverflow.com/a/42391322/13134499

如何将 Maven 配置文件与 Spring 绑定以进行测试?

正如你所做的那样,在 pom.xml 中定义变量

...
<properties>
  <spring.profiles.active>development</spring.profiles.active>
</properties>

在 src/test/resources 中的 application-test.properties 中定义一个占位符:

spring.profiles.active=@spring.profiles.active@

在 pom.xml 中启用资源过滤:

<build>
  ...
  <testResources>
    <testResource>
      <directory>src/test/resources</directory>
      <filtering>true</filtering>
    </testResource>
  <testResources>
</build>

L
LIU YUE

文件结构:

/src/main/资源

=>

应用程序属性:

spring.profiles.active:@spring.profiles.active@'

应用程序-dev.properties

应用程序-prod.properties

IDE-Eclipse:

Right click on the project=>Run As=>Run Configuration=>Arguments=>VM Arguments:-Dspring.profiles.active=dev

命令:

mvn spring-boot:run -Dspring.profiles.active=dev
mvn clean install -Dspring.profiles.active=dev