Spring Batch 在 autowire 的时候提示:
Could not autowire. No beans of 'JobBuilderFactory' type found.
这个错误提示其实是在 IntelliJ 中提示的,尽管有这个错误,你的程序还是可以运行没有问题的。
简单来说,这个提示就是 IntelliJ 没有办法通过 Autowire 找到对应的 Bean。
如果你使用的是 Spring Batch 的话,你可以在你的 Batch 配置文件中添加:
@EnableBatchProcessing
注解。
这样的话,你的Class 就不会在 IntelliJ 中有这个错误提示了。
https://www.cwiki.us/display/SpringBatchZH/questions/57939048
来源:oschina
链接:https://my.oschina.net/honeymoose/blog/3234954