aspectj aop 切面與切點

可以在方法加入 joinPoint 獲取切點信息 切面: @Aspect public class AopAspectJ { // 前置通知:方法執行之前獲得增強 @Before ( value = "savePoint()" ) public void beforAop ( JoinPoint joinPoint ) { System . out . println ( "this is bef
相關文章
相關標籤/搜索