Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name ‘deviceController’ for bean class [com.hikvision.ipsc.convergence.admin.modules.controller.DeviceController] conflicts with existing, non-compatible bean definition of same name and class [com.hikvision.ipsc.convergence.site.modules.controller.DeviceController]
表面上看是两个DeviceController类名重复
但我这两个类明明在两个服务里面,正常来说是不会相互影响到的
但是!!!很重要的一点,我用一个服务引用了另外一个服务,所以导致冲突
去掉服务间的依赖就好,如果想要依赖的话,用feign这个注解来实现服务间的调用吧