我有一个带有AOP点切入点的弹簧上下文xml配置:
<aop:config>
<aop:pointcut id="allOperation"
expression="execution(* my.services.v2..*Test.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="allOperation"/>
</aop:config>
这应该拦截以Test结尾的任何子包中的任何方法。 应截取的方法示例:my.services.v2.MyServiceTest.getSomeThink()
但它不起作用,请帮助我