我正在使用spring aop并定义了一些方面。在我的 tomcat 上启用了 Spring LTW。在我的应用程序上下文中:
<context:load-time-weaver/>
<aop:aspectj-autoproxy proxy-target-class="false"/>
方面也工作得很好!但是目标类被代理了!导致 ClassCastException: can not convert $Proxy... 请注意,我的目标类没有被代理!
我正在使用spring aop并定义了一些方面。在我的 tomcat 上启用了 Spring LTW。在我的应用程序上下文中:
<context:load-time-weaver/>
<aop:aspectj-autoproxy proxy-target-class="false"/>
方面也工作得很好!但是目标类被代理了!导致 ClassCastException: can not convert $Proxy... 请注意,我的目标类没有被代理!