1. 程式人生 > >AOP常見術語

AOP常見術語

row 方法 異常 查詢 blog aspect int cut pos

join point 連接點,相當於sql中的一條記錄

point cut 切點 ,相當於sql中的查詢條件

advice 增強 , 織入的功能

{

1,method before advice 前置增強

2,after returning advice 後置增強

3,method interceptor 環繞增強(相當於方法攔截器)

4,throws advice 異常捕獲增強

}

target 目標對象 ,advice織入的對象

introduction 引介

weaving 織入

proxy 代理

aspect 切面

AOP常見術語