这个aop拦截的是ServiceImpl的一个方法,然后这个ServiceImpl又启动了事务管理,而事务管理又是基于AOP的。
也就是说,这个权限的@Around的切面拦截的是个代理对象的方法,而代理对象的方法是不会把原来父类中的方法的注解加上去的,所以这里这个注解的对象为null。
private String getOperationOfTheAnnotation(ProceedingJoinPoint proceedingJoinPoint) throws Exception {
// 方法签名
Signature signature = proceedingJoinPoint.getSignature();
// 获取的是代理类的method对象
Method method = ( (MethodSignature)signature ).getMethod();
// 这个方法才是目标对象上有注解的方法
Method realMethod = proceedingJoinPoint.getTarget().getClass().getDeclaredMethod(signature.getName(), method.getParameterTypes());
// 取出对应的注解
AuthorizationNeed authorizationNeed = realMethod.getAnnotation(AuthorizationNeed.class);
return authorizationNeed.operation();
}
本文探讨了在AOP环境下,当一个被拦截的方法同时触发事务管理时,如何正确获取目标对象上的注解。通过深入分析,提供了解决方案,确保事务管理与权限控制的正常运行。
4406

被折叠的 条评论
为什么被折叠?



