项目报错because it is a JDK dynamic proxy that implement

  今天启动项目突然发现:项目报错because it is a JDK dynamic proxy that implement

因为添加了一个定时任务的接口

项目报错because it is a JDK dynamic proxy that implement

 各种定时任务都实现这个接口

项目报错because it is a JDK dynamic proxy that implement

然后使用接口来接代理的实现类

项目报错because it is a JDK dynamic proxy that implement

 然后就报错了,查找半天,得知,Spring推荐奖该注解标记在类(方法)而不是接口,将注解标记在接口上时,只有使用动态代理的时候才会生效,需要标记 proxy-target-class="true" 或者 mode="aspectj"

项目报错because it is a JDK dynamic proxy that implement

 改成

@EnableTransactionManagement(proxyTargetClass = true)

重启,又报了个循环引用的问题,解决了那个循环引用的问题后,去掉这个flag,又没事儿了。具体不知怎么回事,那还是加着这个flag吧。

上一篇:springboot 上传文件:the request was rejected because its size (11601865) exceeds the configured maximum


下一篇:python pip安装模块报错 "Can't connect to HTTPS URL because the SSL module is not available."