springboot公共模块的文件迁移到其他模块后,idea启动其他模块时conflicts with existing, non-compatible bean definition of same name and class
解决方法:
我的项目时gradle项目不是maven项目,使用idea把项目打成war部署到tomcat启动不报错。但使用idea直接执行Application类时就报conflicts with existing, non-compatible bean definition of same name and class。
后来我直接再把迁移的文件复制回公共模块,然后把这个文件名改掉再删除发现其他模块可以正常引用公共模块了。