Aspectj aspect for specifying multiple packages

落爺英雄遲暮 提交于 2020-01-01 05:42:09

问题


I wanted to specify a pattern for aspectj @Around aspect that includes multiple packages.

Example : package 1 : aaa.bbb.ccc.ddd
          package 2 : aaa.bbb.ccc.eee 
          package 3 : aaa.bbb.ccc.eee.fff

Pattern which i used :

@Around("execution(* aaa.bbb.ccc.ddd.*.*(..)) && execution(* aaa.bbb.ccc.eee..*.*(..))")
    i.e Intercept packages aaa.bbb.ccc.ddd, aaa.bbb.ccc.eee and any sub-package of aaa.bbb.ccc.eee

But this pattern doesnt seem to work. Though specifying a single pattern without && condition works.

Can someone suggest whats wrong with this pattern?

Thanks,
Gayathri


回答1:


&& stands for logical AND. What You need here is a logical OR, that in AspectJ is ||.

@Pointcut("execution(* aaa.bbb.ccc.ddd.*.*(..))")
public void methodInDddPackage() {}

@Pointcut("execution(* aaa.bbb.ccc.eee.*.*(..))")
public void methodInEeePackage() {}

@Pointcut("methodInDddPackage() || methodInEeePackage()")
public void methodInDddOrEeePackage() {}

Below equivalent inline expression:

@Pointcut("execution(* aaa.bbb.ccc.ddd.*.*(..)) || execution(* aaa.bbb.ccc.eee.*.*(..))")
public void methodInDddOrEeePackageInline() {}

See this Spring AOP documentation page for more details.



来源:https://stackoverflow.com/questions/7819300/aspectj-aspect-for-specifying-multiple-packages

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!