我无法使用 spring aop 性能日志记录私有方法。下面是我在下面的配置中使用的配置
<aop:config proxy-target-class="true">
<aop:pointcut id="allServiceMethods" expression="execution(* com.mycom.app.abc..*.*(..))"/>
<aop:advisor pointcut-ref="allServiceMethods" advice-ref="performanceMonitor" order="2"/>
</aop:config>
我的课程路径上有cglib
jar。