gpt4 book ai didi

java - Spring 启动 : how to use multiple yml files

转载 作者:IT老高 更新时间:2023-10-28 13:48:59 25 4
gpt4 key购买 nike

在 Spring Boot 中,我知道我可以将 application.properties 替换为 application.yml 并使用 YAML 格式。但是,我的 application.yml 越来越拥挤,所以我需要将它拆分一下。我怎样才能做到这一点?我想做这样的事情:

...
@Configuration
@EnableAutoConfiguration
@EnableWebMvc
@EnableScheduling
@PropertySource({"classpath:application.yml", "classpath:scheduling.yml"})
public class ApplicationConfig {
...

最佳答案

  1. 去掉@PropertySource注解,你不需要了
  2. 将您的 scheduling.yml 重命名为 src/main/resources/application-scheduling.yml
  3. src/main/resources/application.yml文件下一行添加:

    spring.profiles.include: '调度'

关于java - Spring 启动 : how to use multiple yml files,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23134869/

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