bug描述:
在一个springboot
模块里面调用另外一个模块的方法
通过下面的代码可以看到,我的方法所在的模块是在com.bpmn.camunda.sync.provider
里面,而我导入的包是在另外一个模块里面 com.bpmn.camunda.common.service
如果直接启动项目会报错。
package com.bpmn.camunda.sync.provider.server.impl;
import com.bpmn.camunda.common.service.IActHiCommentService;
@Service
public class CActIdUserServiceImpl extends AbstractSupperServiceCActIdUserMapper, CActIdUserModel, CActIdUserDTO> implements CActIdUserService {
@Autowired
private IActHiCommentService iActHiCommentService;
项目背景:
普通的springclou
项目。
解决方法:
我们应该在主方法里面加上包的扫描,springbooot
会自动扫描到bean,并注入到Ioc
容器里面。
一个是 加上componentScan
加上了 "com.bpmn.camunda.common.service"
@ComponentScan(basePackages = {"com.bpmn.camunda.auth","com.bpmn.camunda.sync","com.bpmn.camunda.common.service"})
@SpringBootApplication
@ComponentScan(basePackages = {"com.bpmn.camunda.auth","com.bpmn.camunda.sync","com.bpmn.camunda.common.service"})
@MapperScan({"com.bpmn.camunda.sync.provider.mapper","com.bpmn.camunda.common.mapper"})
@EnableDiscoveryClient
@EnableProcessApplication
@EnableFeignClients(basePackages = {"com.bpmn.camunda","com.focusin.bpmn"})
@EnableAopLog
public class BpmnCamundaSyncApplication {
public static void main(String[] args) {
SpringApplication.run(BpmnCamundaSyncApplication.class, args);
}
}
其实只加上了service方法还不够,因为service大概率会调用mapper方法,所以还需要加上mapper扫描。
@MapperScan({"com.bpmn.camunda.sync.provider.mapper","com.bpmn.camunda.common.mapper"})
总结:
添加其他模块的bean时,spring并不能直接扫描到该bean,需要我们手动设置扫描路径。