如何读取方面中的注释属性值?
我希望对所有使用@Transactional注释的关节点执行我的Around建议(readonly = false).
@Around("execution(* com.mycompany.services.*.*(..)) "
+ "&& @annotation(org.springframework.transaction.annotation.Transactional)")
public Object myMethod(ProceedingJoinPoint pjp) throws Throwable {
}
最佳答案
你可以这样做而无需手动处理签名(argNames用于在没有调试信息的情况下编译时保留参数名称):
原文链接:https://www.f2er.com/spring/431707.html@Around(
value = "execution(* com.mycompany.services.*.*(..)) && @annotation(tx)",argNames = "tx")
public Object myMethod(ProceedingJoinPoint pjp,Transactional tx)
throws Throwable {
...
}