org.springframework.aop.BeforeAdvice 表明前置加強,由於spring只支持方法級的加強,因此MethodBeforeAdvice 是目前可用前置加強,表示在目標方法執行前實施加強。
org.springframework.aop.AfterAdvice 表明後加強,表示目標方法在執行後實施加強
org.springframework.aop.MethodInterceptor 表明環繞加強,表示目標方法執行先後實施加強
org.springframework.aop.ThrowsAdvice 表明拋出異常加強,表示目標方法拋出異常後實施加強
org.springframework.aop.IntroductionInterceptor 表明引介加強,表示在目標類中添加一些新的方法和屬性