标签: spring-boot
以下语法正确吗?它编译没有错误。但我觉得 @ConditonalOnMissingBean应该仅使用bean的名称,而不是类
@Bean @ConditonalOnMissingBean(RequestContextListener.class) public RequestContextListener requestContextListener(){ return new RequestContextListener(); }