java – 服务的任何公共方法的AOP切入点表达式

前端之家收集整理的这篇文章主要介绍了java – 服务的任何公共方法的AOP切入点表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

什么是最简单的切入点表达式,它将拦截使用@Service注释的所有bean的所有公共方法?例如,我希望它会影响这个bean的两个公共方法

@Service
public MyServiceImpl implements MyService {
    public String doThis() {...}
    public int doThat() {...}
    protected int doThatHelper() {...} // not wrapped
}
最佳答案
documentation应该非常有帮助.

我会创建两个单独的点切割,一个用于所有公共方法,一个用于所有使用@Service注释的类,然后创建第三个,它结合了另外两个的切入点表达式.

查看(7.2.3.1支持的切入点指示符)以供使用的指示符.我认为你是在寻找公共方法的“执行”指示符之后,以及用于查找注释的“注释”指示符.

然后看一下(7.2.3.2组合切入点表达式)来组合它们.

我在下面提供了一些代码(我没有测试过).它主要来自文档.

@Pointcut("execution(public * *(..))") //this should work for the public pointcut
private void anyPublicOperation() {}

//@Pointcut("@annotation(Service)") this might still work,but try 'within' instead
@Pointcut("@within(Service)") //this should work for the annotation service pointcut
private void inTrading() {}

@Pointcut("anyPublicOperation() && inTrading()")
private void tradingOperation() {}
原文链接:https://www.f2er.com/spring/431447.html

猜你在找的Spring相关文章