Pointcut 是指那些方法須要被執行"AOP",是由"Pointcut Expression"來描述的.
Pointcut能夠有下列方式來定義或者經過&& || 和!的方式進行組合.
args()
@args()
execution()
this()
target()
@target()
within()
@within()
@annotation
其中execution 是用的最多的,其格式爲:
execution(modifiers-pattern? ret-type-pattern declaring-type-pattern? name-pattern(param-pattern)throws-pattern?)
returning type pattern,name pattern, and parameters pattern是必須的.
ret-type-pattern:能夠爲*表示任何返回值,全路徑的類名等.
name-pattern:指定方法名,*表明因此,set*,表明以set開頭的全部方法.
parameters pattern:指定方法參數(聲明的類型),(..)表明全部參數,(*)表明一個參數,(*,String)表明第一個參數爲任何值,第二個爲String類型.
舉例說明:
任意公共方法的執行:
execution(public * *(..))
任何一個以「set」開始的方法的執行:
execution(* set*(..))
AccountService 接口的任意方法的執行:
execution(* com.xyz.service.AccountService.*(..))
定義在service包裏的任意方法的執行:
execution(* com.xyz.service.*.*(..))
定義在service包和全部子包裏的任意類的任意方法的執行:
execution(* com.xyz.service..*.*(..))
定義在pointcutexp包和全部子包裏的JoinPointObjP2類的任意方法的執行:
execution(* com.test.spring.aop.pointcutexp..JoinPointObjP2.*(..))")
***> 最靠近(..)的爲方法名,靠近.*(..))的爲類名或者接口名,如上例的JoinPointObjP2.*(..))
pointcutexp包裏的任意類.
within(com.test.spring.aop.pointcutexp.*)
pointcutexp包和全部子包裏的任意類.
within(com.test.spring.aop.pointcutexp..*)
實現了Intf接口的全部類,若是Intf不是接口,限定Intf單個類.
this(com.test.spring.aop.pointcutexp.Intf)
***> 當一個實現了接口的類被AOP的時候,用getBean方法必須cast爲接口類型,不能爲該類的類型.
帶有@Transactional標註的全部類的任意方法.
@within(org.springframework.transaction.annotation.Transactional)
@target(org.springframework.transaction.annotation.Transactional)
帶有@Transactional標註的任意方法.
@annotation(org.springframework.transaction.annotation.Transactional)
***> @within和@target針對類的註解,@annotation是針對方法的註解
參數帶有@Transactional標註的方法.
@args(org.springframework.transaction.annotation.Transactional)
參數爲String類型(運行是決定)的方法.
args(String)
Pointcut 能夠經過Java註解和XML兩種方式配置,以下所示:
//補充部分 spring
spring aop expression 匹配多個條件 多個表達式 express
<aop:config> this
<aop:pointcut expression="execution(* com.travelsky.ccboy.dao*.find*())|| execution(* com.travelsky.ccboy.dao*.query*())" spa
id="findCachePointcut" /> 接口
<aop:advisor advice-ref="jdbcInterceptor" pointcut-ref="findCachePointcut" /> get
</aop:config> it
在多個表達式之間使用 ||,or表示 或,使用 &&,and表示 與,!表示 非。 io
上面的代碼也能夠改寫成 ast
<aop:config> class
<aop:pointcut expression="(execution(* com.travelsky.ccboy.dao*.find*())) or(execution(* com.travelsky.ccboy.dao*.query*()))"
id="findCachePointcut" />
<aop:advisor advice-ref="jdbcInterceptor" pointcut-ref="findCachePointcut" />
</aop:config>
<!--任意級別的包路徑-->
<aop:config proxy-target-class="false">
<aop:advisor advice-ref="cacheAdvice" pointcut="execution(* *..service.impl..*.*(..))" />
</aop:config>
注意上面兩中方法的不一樣點出了 將 || 改爲了 or ,還有就是 每一個execution都被()包含起來,建議爲了區分不一樣的表達式 最好都是用()包裝。
老外喜歡吧邏輯運算符用OR,and !寫,國內通常用|| && !.