1)在starter启动类中@ComponentScan添加普通类所在包扫描路径
2)普通类代码示例:
@Component
public class ExcelUtils {
@Autowired
private InfoMapper infoMapper;
private static ExcelUtils excelUtils;
@PostConstruct //通过@PostConstruct实现初始化bean之前进行的操作
public void init() {
excelUtils = this;
excelUtils.infoMapper = this.infoMapper;
// 初使化时将已静态化的testService实例化
}
…
public insertInfo(){
//调用方法实例:
excelUtils.infoMapper.insert(urlList);
}
}
## 实现springboot普通类调用mapper或service器
最新推荐文章于 2024-08-29 11:25:24 发布