搜索子包模式名称中所有方法的切入点表达式?

时间:2018-01-24 16:14:46

标签: java spring spring-aop

我有一个带有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()

但它不起作用,请帮助我

0 个答案:

没有答案