https://blog.csdn.net/qq_37869130/article/details/82194702
SpringMVC注解标黄报错:
advised by
org.springframework.transaction.interceptor.TransactionInterceptor.invoke(org.aopalliance.intercept.MethodInvocation)
出现该提示,只需要在扫描包上 use-default-filters="false"
<context:component-scan base-package="cn.com.xxx.*" use-default-filters="false"/>
具体说明可参考: