问题描述:
此问题发生在,创建批处理jar包接口(org.quartz.JobListener)的实现类,在用@Resource注解注入实例时候报错。
错误信息:
The bean 'myJobListener' could not be injected as a 'com.sinosoft.app.project.batchmanagement.utils.MyJobListener' because it is a JDK dynamic proxy that implements:
org.quartz.JobListener
Action:
Consider injecting the bean as one of its interfaces or forcing the use of CGLib-based proxies by setting proxyTargetClass=true on @EnableAsync and/or @EnableCaching.
发生原因:
因为是该实现类是实现jar包,所以Java默认用基于标准都JDK接口的代理。如果想要用@Resource注解注入实例则需要修改为基于类的代理。
解决办法:
Spring boot :在application.properice文件中添加 spring.aop.proxy-target-class=true。
Spring MVC:在xml配置文件中添加 proxy-target-class:true 。
技术解释:
proxy-target-class属性值决定是基于JDK接口还是基于类的代理被创建。如果为true代表基于类的代理,如果为false代表基于JDK接口的代理。