如何管理共享库中的spring-cloud bootstrap属性?

如何管理共享库中的spring-cloud bootstrap属性?,第1张

如何管理共享库中的spring-cloud bootstrap属性

我能够找到解决方案。该解决方案的目标是:

  • 从共享库中的yaml文件加载值。
  • 允许使用该库的应用程序引入自己的bootstrap.yml,并将它们也加载到环境中。
  • bootstrap.yml中的值应覆盖共享yaml中的值。

主要挑战是在应用程序生命周期的适当时间点注入一些代码。具体来说,我们需要在将bootstrap.yml
PropertySource添加到环境中之后执行此 *** 作(以便我们可以按照相对于它的正确顺序注入自定义PropertySource),但也需要在应用程序开始配置Bean之前(作为配置值控件)行为)。

我发现的解决方案是使用自定义的EnvironmentPostProcessor

public class CloudyConfigEnvironmentPostProcessor implements EnvironmentPostProcessor, Ordered {    private YamlPropertySourceLoader loader;    public CloudyConfigEnvironmentPostProcessor() {        loader = new YamlPropertySourceLoader();    }    @Override    public void postProcessEnvironment(ConfigurableEnvironment env, SpringApplication application) {        //ensure that the bootstrap file is only loaded in the bootstrap context        if (env.getPropertySources().contains("bootstrap")) { //Each document in the multi-document yaml must be loaded separately. //Start by loading the no-profile configs... loadProfile("cloudy-bootstrap", env, null); //Then loop through the active profiles and load them. for (String profile: env.getActiveProfiles()) {     loadProfile("cloudy-bootstrap", env, profile); }        }    }    private void loadProfile(String prefix, ConfigurableEnvironment env, String profile) {        try { PropertySource<?> propertySource = loader.load(prefix + (profile != null ? "-" + profile: ""), new ClassPathResource(prefix + ".yml"), profile); //propertySource will be null if the profile isn't represented in the yml, so skip it if this is the case. if (propertySource != null) {     //add PropertySource after the "applicationConfigurationProperties" source to allow the default yml to override these.     env.getPropertySources().addAfter("applicationConfigurationProperties", propertySource); }        } catch (IOException e) { throw new RuntimeException(e);        }    }    @Override    public int getOrder() {        //must go after ConfigFileApplicationListener        return Ordered.HIGHEST_PRECEDENCE + 11;    }}

可以通过meta-INF / spring.factories注入此自定义的EnvironmentPostProcessor:

#Environment PostProcessorsorg.springframework.boot.env.EnvironmentPostProcessor=com.mycompany.cloudy.bootstrap.autoconfig.CloudyConfigEnvironmentPostProcessor

需要注意的几件事:

  • YamlPropertySourceLoader按配置文件加载yaml属性,因此,如果您使用的是多文档yaml文件,则实际上需要分别从其中分别加载每个配置文件,包括无配置文件的配置。
  • ConfigFileApplicationListener是EnvironmentPostProcessor,负责将bootstrap.yml(或常规上下文中的application.yml)加载到环境中,因此,为了相对于bootstrap.yml属性正确地优先放置自定义yaml属性,您需要对命令进行排序ConfigFileApplicationListener之后的自定义EnvironmentPostProcessor。

编辑:我最初的答案不起作用。 我要用这个代替它。



欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5621719.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存