调用不同模块A component required a bean of type ‘com.qhzx.td.service.OtcPurchaseSellOutManageService‘ that

springboot应用启动的时候,bean的加载扫描失败,错误信息如下A component required a bean of type ‘XXX’ that could not be found.
调用不同模块A component required a bean of type ‘com.qhzx.td.service.OtcPurchaseSellOutManageService‘ that_第1张图片
场景是这样的,我依赖了我另外一个服务用来生成主键ID,但是这两个项目包结构不一样

解决方案
在启动类中加入@ComponentScan(basePackages="com.qhzx.td.mapper")

你可能感兴趣的:(java,spring,boot,mysql)