1

我有三个项目。Proj 3 依赖于 Proj 2,Proj 2 依赖于 Proj 1。每个项目都使用 Spring Boot,并配置了 yml 文件。我不想在 Proj 2 中重复 Proj 1 的 yml 配置。同样,我不想在 Proj 3 中重复 Proj 2 和 Proj 1 的 yml 配置。

如何才能做到这一点?据我所知,我只能application.yml在所有三个项目中拥有一个文件(正在使用)。

4

1 回答 1

0

我试图将我的 .properties 更改为 .yml 并且它对我有用。

@Configuration
public class AppConfig {

    @Profile("staging")
    @Bean
    public static PropertySourcesPlaceholderConfigurer properties() {
        PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer = new PropertySourcesPlaceholderConfigurer();
        YamlPropertiesFactoryBean yaml = new YamlPropertiesFactoryBean();
        yaml.setResources(new ClassPathResource("common-staging.yml"));
        propertySourcesPlaceholderConfigurer.setProperties(yaml.getObject());
        return propertySourcesPlaceholderConfigurer;
    }
}
于 2017-11-18T08:52:47.703 回答