aspectj aop 切面与切点

可以在方法加入 joinPoint 获取切点信息 切面: @Aspect public class AopAspectJ { // 前置通知:方法执行之前获得增强 @Before ( value = "savePoint()" ) public void beforAop ( JoinPoint joinPoint ) { System . out . println ( "this is bef
相关文章
相关标签/搜索