gpt4 book ai didi

java - @Profile 在没有 Spring Boot 的情况下不起作用(-Dspring.profiles.active with maven)

转载 作者:行者123 更新时间:2023-12-02 02:11:21 27 4
gpt4 key购买 nike

我无法在没有 Spring Boot 的情况下使 @Profile 与 maven 一起工作。在 pom.xml 中,我定义了 Maven 配置文件(“env”和“dev”也是默认的)。

不幸的是,每当我尝试使用以下方式构建项目时:

mvn clean install -Dspring.profiles.active=env 

始终应用“默认”配置文件(在 Spring 中 - maven 将“env”用于 maven 目的)。我还尝试使其与 System.getProperty("spring.profiles.active") 和 System.getenv("spring.profiles.active") 一起使用,但是那些总是返回 null。我认为还值得一提的是,这是非 Web 应用程序。

Bean(读取正确的属性):

    @Bean
@Profile({"default"})
public static PropertySourcesPlaceholderConfigurer defaultProperties() {
return getPropertySourcesPlaceholderConfigurer("db.yml");
}

@Bean
@Profile({"env"})
public static PropertySourcesPlaceholderConfigurer envProperties() {
return getPropertySourcesPlaceholderConfigurer("db-env.yml");
}

@Bean
@Profile({"test"})
public static PropertySourcesPlaceholderConfigurer devProperties() {
return getPropertySourcesPlaceholderConfigurer("db-test.yml");
}

private static PropertySourcesPlaceholderConfigurer getPropertySourcesPlaceholderConfigurer(String resource) {
PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer = new PropertySourcesPlaceholderConfigurer();
YamlPropertiesFactoryBean yaml = new YamlPropertiesFactoryBean();
yaml.setResources(new ClassPathResource(resource));
final Properties object = yaml.getObject();
if (object != null) {
propertySourcesPlaceholderConfigurer.setProperties(object);
}
return propertySourcesPlaceholderConfigurer;
}

Pom.xml:

<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>spring.profiles.active</name>
<value>dev</value>
</property>
</activation>
</profile>
<profile>
<id>env</id>
<activation>
<property>
<name>spring.profiles.active</name>
<value>env</value>
</property>
</activation>
</profile>
</profiles>

最佳答案

Spring 配置文件用于运行您的应用程序,而不是构建。执行应用程序时传递 -Dspring.profiles.active=env 。在您的示例中,您正在执行 mvn install ,但它不会执行您的应用程序。

关于java - @Profile 在没有 Spring Boot 的情况下不起作用(-Dspring.profiles.active with maven),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50002648/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com