溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring AOP中pointcut expression表達式是什么

發(fā)布時間:2022-12-08 17:45:40 來源:億速云 閱讀:130 作者:iii 欄目:編程語言

這篇文章主要講解了“Spring AOP中pointcut expression表達式是什么”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Spring AOP中pointcut expression表達式是什么”吧!

注解@Pointcut 是指哪些方法 需要被執(zhí)行 AOP,是由“PointCut Expression”

execution(modifier-pattern? ret-type-pattern declaring-type-pattern?  name-pattern(param-pattern) throws-pattern?) 
pattern分別表示修飾符匹配(modifier-pattern?)、返回值匹配(ret-type-pattern)、類路徑匹配(declaring-type-pattern?)、方法名匹配(name-pattern)、參數(shù)匹配((param-pattern))、異常類型匹配(throws-pattern?),其中后面跟著“?”的是可選項。

Pointcut 可以有下列方式來定義或者 通過 && || 和 ! 方式進行組合

@args()

@execution()

@target()

@within()

@annotation()

其中 execution 是用的最多的,其格式為:

execution(modifiers-pattern? ret-type-pattern declaring-type-pattern? name-pattern(param-pattern) throws-pattern?)

ret-type-pattern:可以為*表示任何返回值,全路徑的類名等.

declaring-type-pattern 

name-pattern:指定方法名,*代表所以,set*,代表以set開頭的所有方法.

parameters pattern:指定方法參數(shù)(聲明的類型),(..)代表所有參數(shù),(*)代表一個參數(shù),(*,String)代表第一個參數(shù)為任何值,第二個為String類型.

execution(修飾類型 返回類型 )

modifiers-pattern 修飾類型(可選):可取值, public ,protected,private,* (* 代表全部)

ret-type-pattern 返回類型 :可取值, 所有可以作為返回類型的名字,自定義類可以寫包的路徑(用正則表達式匹配)

declaring-type-pattern

舉例說明:(問:到底哪里需要空格呢?空格加多了有影響嗎?)

任意公共方法的執(zhí)行:

  execution(public * *(..))

任何一個以“set” 開始的方法的執(zhí)行

  execution(* set*(..))

AccountService 接口的任意方法的執(zhí)行

  execution(* com.xyz.service.AccountService.*(..)))

定義在service 包里的任意方法的執(zhí)行

  execution(* com.xyz.service.*.*(..))

定義在service 包和所有子包里的任意類的任意方法的執(zhí)行

  execution(* com.xyz.service..*.*(..))

感謝各位的閱讀,以上就是“Spring AOP中pointcut expression表達式是什么”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對Spring AOP中pointcut expression表達式是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI