aspectj 11 捕獲基于對象類型的連接點(diǎn)

aspectj支持對連接點(diǎn)類型的判斷,包括this(當(dāng)前對象),可選目標(biāo)引用target(被調(diào)用對象),以及指定參數(shù)類型

捕獲何時(shí)this引用是一個(gè)特定的類型

即連接點(diǎn)處的this引用是給定的類型

this(Type or Id)
Picks out each join point where the currently executing object (the object bound to this) is an instance of Type, or of the type of the identifier Id (which must be bound in the enclosing advice or pointcut definition). Will not match any join points from static contexts.

后面例子針對this(Type)不包括this(Id)

this捕獲當(dāng)前對象是給定類型

demo在下面

捕獲何時(shí)連接點(diǎn)的目標(biāo)對象是特定的類型

target(Type or Id)
Picks out each join point where the target object (the object on which a call or field operation is applied to) is an instance of Type, or of the type of the identifier Id (which must be bound in the enclosing advice or pointcut definition). Will not match any calls, gets, or sets of static members.

this 和 target 區(qū)別(個(gè)人理解)
this是連接點(diǎn)處的當(dāng)前對象(即調(diào)用的對象)
target是連接點(diǎn)處的目標(biāo)對象(即被調(diào)用的對象)
比如連接點(diǎn)是A.func()中,里面調(diào)用B.func();
此時(shí)this就是A當(dāng)前對象a扣唱,
target就是B當(dāng)前對象b.

target捕獲目標(biāo)對象時(shí)特定類型

上面this和target的demo

package aspectj;

public class MyClass  {
    public void doSth(){
    }

    public static void main(String[] args) {
        MyClass myClass = new MyClass();
        myClass.doSth();
    }
}

package aspectj;

public class Main {
    public static void main(String[] args) {
        MyClass myClass = new MyClass();
        myClass.doSth();
    }
}

package aspectj;

public aspect HelloWorld {

    pointcut thisPoint(MyClass myClass): this(myClass);

    before(MyClass myClass) : thisPoint(myClass) {
        System.out.println(thisJoinPoint.getSignature());
        System.out.println(thisJoinPoint.getSourceLocation());
        System.out.println("thisPoint " + thisJoinPoint.getKind());
        System.out.println();
    }

    pointcut targetPoint(MyClass myClass): target(myClass);

    before(MyClass myClass) : targetPoint(myClass) {
        System.out.println(thisJoinPoint.getSignature());
        System.out.println(thisJoinPoint.getSourceLocation());
        System.out.println("targetPoint " + thisJoinPoint.getKind());
        System.out.println();
    }
}

輸出

aspectj.MyClass()
MyClass.java:3
thisPoint initialization

aspectj.MyClass()
MyClass.java:3
targetPoint initialization

aspectj.MyClass()
MyClass.java:3
thisPoint constructor-execution

aspectj.MyClass()
MyClass.java:3
targetPoint constructor-execution

void aspectj.MyClass.doSth()
Main.java:6
targetPoint method-call

void aspectj.MyClass.doSth()
MyClass.java:4
thisPoint method-execution

void aspectj.MyClass.doSth()
MyClass.java:4
targetPoint method-execution

還是比較好理解的

捕獲何時(shí)連接點(diǎn)的參數(shù)是某個(gè)數(shù)字黍氮,類型和次序

args(Type or Id, ...)
Picks out each join point where the arguments are instances of the appropriate type (or type of the identifier if using that form). A null argument is matched iff the static type of the argument (declared parameter type or field type) is the same as, or a subtype of, the specified args type.

args捕獲參數(shù)是特定類型

demo

package aspectj;

public class Main {
    public static void main(String[] args) {
        MyClass myClass = new MyClass();
        test(myClass);
    }

    public static void test(MyClass myClass) {
        myClass.doSth();
    }
}

package aspectj;

public class MyClass  {
    public void doSth(){
    }
}

package aspectj;

public aspect HelloWorld {

    pointcut argPoint(MyClass myClass): args(myClass);

    before(MyClass myClass) : argPoint(myClass) && !within(HelloWorld){
        System.out.println(thisJoinPoint.getSignature());
        System.out.println(thisJoinPoint.getSourceLocation());
        System.out.println("argPoint " + thisJoinPoint.getKind());
        System.out.println();
    }
}

輸出

void aspectj.Main.test(MyClass)
Main.java:6
argPoint method-call

void aspectj.Main.test(MyClass)
Main.java:9
argPoint method-execution

思考

區(qū)分this和target區(qū)別
參數(shù)為基本類型在前面講過如args(int)還能獲取傳int參數(shù)值

refer

https://eclipse.org/aspectj/doc/released/progguide/semantics-pointcuts.html
《aspectj cookbook》

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末僧凤,一起剝皮案震驚了整個(gè)濱河市深浮,隨后出現(xiàn)的幾起案子蜻拨,更是在濱河造成了極大的恐慌池充,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,686評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件缎讼,死亡現(xiàn)場離奇詭異收夸,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)血崭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,668評論 3 385
  • 文/潘曉璐 我一進(jìn)店門卧惜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人夹纫,你說我怎么就攤上這事咽瓷。” “怎么了舰讹?”我有些...
    開封第一講書人閱讀 158,160評論 0 348
  • 文/不壞的土叔 我叫張陵茅姜,是天一觀的道長。 經(jīng)常有香客問我月匣,道長钻洒,這世上最難降的妖魔是什么奋姿? 我笑而不...
    開封第一講書人閱讀 56,736評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮航唆,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘院刁。我一直安慰自己糯钙,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,847評論 6 386
  • 文/花漫 我一把揭開白布退腥。 她就那樣靜靜地躺著任岸,像睡著了一般。 火紅的嫁衣襯著肌膚如雪狡刘。 梳的紋絲不亂的頭發(fā)上享潜,一...
    開封第一講書人閱讀 50,043評論 1 291
  • 那天,我揣著相機(jī)與錄音嗅蔬,去河邊找鬼剑按。 笑死,一個(gè)胖子當(dāng)著我的面吹牛澜术,可吹牛的內(nèi)容都是我干的艺蝴。 我是一名探鬼主播,決...
    沈念sama閱讀 39,129評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼鸟废,長吁一口氣:“原來是場噩夢啊……” “哼猜敢!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起盒延,我...
    開封第一講書人閱讀 37,872評論 0 268
  • 序言:老撾萬榮一對情侶失蹤缩擂,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后添寺,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體胯盯,經(jīng)...
    沈念sama閱讀 44,318評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,645評論 2 327
  • 正文 我和宋清朗相戀三年计露,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了陨闹。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,777評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡薄坏,死狀恐怖趋厉,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情胶坠,我是刑警寧澤君账,帶...
    沈念sama閱讀 34,470評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站沈善,受9級特大地震影響乡数,放射性物質(zhì)發(fā)生泄漏椭蹄。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,126評論 3 317
  • 文/蒙蒙 一净赴、第九天 我趴在偏房一處隱蔽的房頂上張望绳矩。 院中可真熱鬧,春花似錦玖翅、人聲如沸翼馆。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,861評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽应媚。三九已至,卻和暖如春猜极,著一層夾襖步出監(jiān)牢的瞬間中姜,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,095評論 1 267
  • 我被黑心中介騙來泰國打工跟伏, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留丢胚,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,589評論 2 362
  • 正文 我出身青樓受扳,卻偏偏與公主長得像嗜桌,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子辞色,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,687評論 2 351

推薦閱讀更多精彩內(nèi)容

  • PLEASE READ THE FOLLOWING APPLE DEVELOPER PROGRAM LICENSE...
    念念不忘的閱讀 13,447評論 5 6
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理骨宠,服務(wù)發(fā)現(xiàn),斷路器相满,智...
    卡卡羅2017閱讀 134,637評論 18 139
  • 說明 本節(jié)結(jié)合《aspectj cookbook》第4章進(jìn)行學(xué)習(xí)层亿,利用官網(wǎng)以及demo學(xué)習(xí) 連接點(diǎn)有多種,列舉如下...
    赤子心_d709閱讀 638評論 0 0
  • 目錄鏈接 接連幾天立美,夕霧的心不知道跑哪去了匿又,她一直被那個(gè)和向遠(yuǎn)有關(guān)的夢擾的心思不定,她想見見他建蹄。 眼看夕霧已經(jīng)辭職...
    悠然晨欣閱讀 340評論 4 6
  • 上午練大字碌更,橫寫不好 晚上練橫,看了一些網(wǎng)絡(luò)視頻洞慎,看評論寫法上有爭議痛单,不敢學(xué)了。 極簡中國書法史劲腿,看完了隸書旭绒,雖是...
    mw568閱讀 339評論 0 0