conflicts with existing, non-compatible bean definition of same name and class

Annotation-specified bean name 'xxxxxImpl' for bean class [cn.abc.dao.service.xxxxxImpl] conflicts with existing, non-compatible bean definition of same name and class [cn.abc.dao.service.dev.xxxxxIImpl]

编译没问题,运行就报错了。

一查原来发现在dao路径下,有两个一样的实现名xxxxxIImpl

一个在dao下

一个在dao.dev下

解析的时候就错误了。删掉一个,把功能合并到一个上去。解决。

用idea的话,好像各种引用都没改自动就好了。

原文地址:https://www.cnblogs.com/zhangcheng1/p/11245489.html