java – 在方面中读取注释属性

前端之家收集整理的这篇文章主要介绍了java – 在方面中读取注释属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何读取方面中的注释属性值?

我希望对所有使用@Transactional注释的关节点执行我的Around建议(readonly = false).

@Around("execution(* com.mycompany.services.*.*(..)) "
+ "&& @annotation(org.springframework.transaction.annotation.Transactional)")
public Object myMethod(ProceedingJoinPoint pjp) throws Throwable {
}
最佳答案
你可以这样做而无需手动处理签名(argNames用于在没有调试信息的情况下编译时保留参数名称):

@Around(
    value = "execution(* com.mycompany.services.*.*(..)) && @annotation(tx)",argNames = "tx") 
public Object myMethod(ProceedingJoinPoint pjp,Transactional tx) 
    throws Throwable {
    ...
} 

7.2.4.6 Advice parameters

原文链接:https://www.f2er.com/spring/431707.html

猜你在找的Spring相关文章