17

我维护了一个 spring-boot-starter 来定制返回的错误属性,例如,一个未知的端点被调用。这是通过覆盖 org.springframework.boot.web.servlet.error.ErrorAttributes bean 来完成的。

2.0.6 一切正常,但2.1.0 默认禁用 bean 覆盖,导致启动器现在失败并显示以下消息。

在类路径资源 [com/mycompany/springboot/starter/config/ErrorsConfig.class] 中定义的名称为“errorAttributes”的无效 bean 定义:无法注册 bean 定义 [根 bean:类 [null];范围=; 摘要=假;懒惰初始化=假;自动线模式=3;依赖检查=0;自动接线候选=真;主要=假;factoryBeanName=com.mycompany.springboot.starter.config.ErrorsConfig;factoryMethodName=errorAttributes; 初始化方法名=空;destroyMethodName=(推断);在类路径资源 [com/mycompany/springboot/starter/config/ErrorsConfig.class]] 中为 bean 'errorAttributes' 定义:已经存在 [Root bean: class [null]; 范围=; 摘要=假;懒惰初始化=假;自动线模式=3;依赖检查=0;自动接线候选=真;主要=假;factoryBeanName=org.springframework.boot.autoconfigure.web.servlet。error.ErrorMvcAutoConfiguration; factoryMethodName=errorAttributes; 初始化方法名=空;destroyMethodName=(推断);在类路径资源 [org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration.class]] 中定义

如文档中所述,将 spring.main.allow-bean-definition-overriding 属性设置为 true 可以解决问题。我的问题是如何在启动器中执行此操作(我不希望启动器的用户必须更改他们的 application.properties 文件,以获取特定于我的启动器的内容)?

我尝试使用该文件中定义的属性对我的@Configuration 进行@PropertySource("classpath:/com/mycompany/starter/application.properties") 注释,但它不起作用。

我错过了什么?有什么方法可以让我的配置覆盖那个 bean?

这是配置的(简化的)源代码:

@Configuration
@PropertySource("classpath:/com/mycompany/starter/application.properties")
public class ErrorsConfig {
    private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();

    @Bean
    public ErrorAttributes errorAttributes() {
        return new DefaultErrorAttributes() {
            @SuppressWarnings("unchecked")
            @Override
            public Map<String, Object> getErrorAttributes(WebRequest request, boolean includeStackTrace) {
                Map<String, Object> errorAttributes = super.getErrorAttributes(request, includeStackTrace);
                // CustomeError is a (simplified) bean of the error attributes we should return.
                CustomError err = new CustomError("myErrorCode", (String) errorAttributes.get("error"));
                return OBJECT_MAPPER.convertValue(err, Map.class);
            }
        };
    }
}

我的资源文件 com/mycompany/starter/application.properties 包含

spring.main.allow-bean-definition-overriding=true

4

2 回答 2

17

Spring Boot 的ErrorAttributesbean 由ErrorMvcAutoConfiguration. 它带有注释,因此如果已经定义@ConditionalOnMissingBean了 bean,它将退出。ErrorAttributes由于您的ErrorsConfig类定义的 bean 试图覆盖 Boot 的ErrorAttributesbean,而不是使其退出,因此您的ErrorsConfig类必须在 Boot 的ErrorMvcAutoConfiguration类之​​后得到处理。这意味着您的启动器中存在订购问题。

@AutoConfigureBefore可以使用和来控制处理自动配置类的顺序@AutoConfigureAfter。假设它ErrorsConfig本身是一个在 中注册的自动配置类spring.factories,您可以通过使用 注释它来解决您的问题@AutoConfigureBefore(ErrorMvcAutoConfiguration.class)。进行此更改后,将在尝试这样做之前ErrorsConfig定义其ErrorAttributesbean,这将导致 Boot 的bean 的自动配置退出。ErrorMvcAutoConfigurationErrorsAttribute

于 2018-11-23T20:00:42.067 回答
8

更简单的解决方案是spring.main.allow-bean-definition-overriding=trueapplication.properties.

参考

于 2019-11-13T13:16:45.030 回答