gpt4 book ai didi

spring-boot - Spring 注释 conditionalOnBean 不起作用

转载 作者:行者123 更新时间:2023-12-03 14:13:56 25 4
gpt4 key购买 nike

我定义了一个带有注释配置的类

    @Configuration
@AutoConfigureAfter(EndpointAutoConfiguration.class)
public class EndpointConfiguration {
@Resource
private MetricsEndpoint metricsEndpoint;

@Bean
public MetricsFormatEndpoint metricsFormatEndpoint() {
return new MetricsFormatEndpoint(metricsEndpoint);
}
}

MetricsFormatEndpoint 运行良好。

但是我使用了注释conditionalOnBean,它根本不起作用。

    @Bean
@ConditionalOnBean(MetricsEndpoint.class)
public MetricsFormatEndpoint metricsFormatEndpoint() {
return new MetricsFormatEndpoint(metricsEndpoint);
}

看到 localhost:8080/beans,spring applicationContext 有 bean 'metricsEndpoint',
    {"bean":"metricsEndpoint","scope":"singleton",
"type":"org.springframework.boot.actuate.endpoint.MetricsEndpoint",
"resource":"class path resource
[org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.class]",
"dependencies":[]}

我阅读了注释@ConditionalOnBean 的文档,它说应该检查的bean 的类类型。当 {@link ApplicationContext} 中包含任何指定的类时,条件匹配。

谁能告诉我为什么

最佳答案

@ConditionalOnBean 的 javadoc将其描述为:

Conditional that only matches when the specified bean classes and/or names are already contained in the BeanFactory.



在这种情况下,关键部分是“已包含在 BeanFactory 中”。在任何自动配置类之前考虑您自己的配置类。这意味着 MetricsEndpoint 的自动配置当您自己的配置检查它的存在并因此检查您的 MetricsFormatEndpoint 时,bean 还没有发生。 bean 未创建。

采取的一种方法是 create your own auto-configuration class为您 MetricsFormatEndpoint bean 并使用 @AutoConfigureAfter(EndpointAutoConfiguration.class) 对其进行注释.这将确保在 MetricsEndpoint 之后评估其条件。 bean 已定义。

关于spring-boot - Spring 注释 conditionalOnBean 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31799855/

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