Configuration 中無法自動注入依賴於component的bean


出現問題時我這樣使用依賴注入

@Configuration
public class WebServiceConfig {

    @Autowired
    private IMessageWebService messageWebService;
    
    @Bean
    public Endpoint endpointHttp() {
        EndpointImpl endpoint = new EndpointImpl(springBus(), messageWebService);
        endpoint.publish("/messageWebService");
        return endpoint;
    }
}

出錯信息

Caused by: java.lang.NullPointerException: null

方法一

下面這樣處理可以解決問題

@Configuration
public class WebServiceConfig {
    
    @Bean
    public Endpoint endpointHttp(IMessageWebService messageWebService) {
        EndpointImpl endpoint = new EndpointImpl(springBus(), messageWebService);
        endpoint.publish("/messageWebService");
        return endpoint;
    }
}

我們不使用自動注入,問題解決

方法二

@Configuration
@DependsOn(value = "springUtil")
public class WebServiceConfig {

    @Autowired
    private IMessageWebService messageWebService;
    
    @Bean
    public Endpoint endpointHttp() {
        EndpointImpl endpoint = new EndpointImpl(springBus(), messageWebService);
        endpoint.publish("/messageWebService");
        return endpoint;
    }
}

加入前置操作


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM