码迷,mamicode.com
首页 > 编程语言 > 详细

org.springframework.beans.factory.BeanCreationException: Could not autowire

时间:2017-08-10 11:39:29      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:技术   技术分享   tco   service   src   str   can   http   turn   

技术分享

由于我在项目中引用了如下代码,增加了

@Configuration
public class Connection {
    public @Bean HttpClientConfig httpClientConfig() {  
        String connectionUrl = "http://192.168.1.13:9200";  
        HttpClientConfig httpClientConfig = new HttpClientConfig.Builder(connectionUrl).multiThreaded(true).build();  
        return httpClientConfig;  
    }  
   @Bean(name="jestClient")
    public  JestClient jestClient() {  
        JestClientFactory factory = new JestClientFactory();  
          
        return factory.getObject();  
    }  
}

没有在项目中加入扫描的包,因此出现的这个情况,在bean中增加自动扫描的包如下:

<context:component-scan base-package="com.shanjin.oxm.service.impl,com.shanjin.oxm,com.shanjin.interceptor,com.shanjin.elasticsearch" />

org.springframework.beans.factory.BeanCreationException: Could not autowire

标签:技术   技术分享   tco   service   src   str   can   http   turn   

原文地址:http://www.cnblogs.com/youran-he/p/7338058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!