首页 > 代码库 > 20140918bug

20140918bug

spring createBeanException    

报:homeController    spring   @Autowired注入blankListManager对象、chanceManager对象失败;

 blankListManager   Autowired注入 cifServer对象失败,chanceManager   Autowired注入 cifServer对象失败;

 

原因是创建cifServer对象时会去连接cifServer的dubbo服务,因为网络问题连不上所以创建bean就失败了。

 

解决:  @Autowired(required=false)

20140918bug