gpt4 book ai didi

java - Spring Boot特定配置文件yaml未加载

转载 作者:行者123 更新时间:2023-11-30 02:57:02 25 4
gpt4 key购买 nike

我有一个 yaml 文件,如下所示:-

spring:
profiles: test
msg: test
---
spring:
profiles : dev
msg: hello
---
spring:
profiles : prod
msg: production

位于/src/main/java/resources中,作为application.yaml

我的代码从该文件读取值如下

@Configuration
@EnableConfigurationProperties
public class TestConfig {

private String msg;

public String getMsg() {
return msg;
}

public void setMsg(String msg) {
this.msg = msg;
}
}

我创建了一个此类的 bean,如下所示:-

@Bean
public TestConfig testConfig() {
return new TestConfig();
}

但是尝试查看个人资料特定信息不适用于以下代码:-

public class Main implements CommandLineRunner{

@Autowired
private TestConfig testConfig;

public static void main(String[] args) {

SpringApplication.run(Main.class, args);

}

@Override
public void run(String... args) throws Exception {
System.out.println("it works!!!");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>> " + testConfig.getMsg());
}
}

非常感谢这里的任何帮助。

谢谢,阿马尔

最佳答案

我解决了我的问题,我的构建脚本中有一个自定义 bootrun,它将我的 spring.profiles.active 系统属性覆盖为某个值。我到处做了一些调整,现在工作正常了。感谢大家的时间!!!!

关于java - Spring Boot特定配置文件yaml未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36979136/

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