`
chembo
  • 浏览: 922659 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

BeanCreationException: No unique bean of type

阅读更多
我定义了一个基类接口BaseDao,下面有些update\save的方法;

然后我用一个BaseDaoImpl去实现这个接口;好啦,然后我现在有两个Dao接口,一个ADao extends BaseDao,一个BDao extends BaseDao; 然后再有这两个Dao的实现: ADaoImpl extends  BaseDaoImpl implements ADao; BDaoImpl extends BaseDaoImpl  implements BDao;

这两个实现都加了@repository。结果就是启动错:

No unique bean of type [com.a.b.BaseDao] is defined: expected single matching bean but found 2: [aDaoImpl, bDaoImpl]


出现这个异常的原因是因为我用了@Autowird这个注解,这个注解是根据类型的方式搜索匹配的,找到了两个相符的依赖类,对于上述配置就是找到了basedao 的两个 bean: adaoimpl , bdaoimpl。


对于这种同类型class有多个实例的解决方案的一种方案是继续延用autowired,不过通过@Qualifier指明是哪个名字的bean,如:

@Autowired
 public void setADao(@Qualifier("aDaoImpl") ADao adao) {
  this.adao= adao;
 }


另外一种方案是使用@Resource这个注解,其功能与@autowired差不多,但是可以通过指定bean name或bean type注入相关bean,默认是按name注入,比autowired灵活很多,如:
@Resource
private ADao aDaoImpl;



分享到:
评论
2 楼 sheangry 2015-06-25  
楼主叼叼的
1 楼 nightshade 2012-07-06  
谢楼主好文

相关推荐

Global site tag (gtag.js) - Google Analytics