Spring AOP中pointcut expression表達式解析 及匹配多個條件

Spring中事務控制相關配置:

  <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"/>
  </bean> 

  <tx:advice id="txAdvice" transaction-manager="txManager">
    <tx:attributes>
      <tx:method name="insert*" rollback-for="Exception"/>
      <tx:method name="update*" rollback-for="Exception"/>
      <tx:method name="delete*" rollback-for="Exception"/>
    </tx:attributes>
  </tx:advice>

  <aop:config>
    <aop:pointcut id="dbServiceOperation" expression="execution(* com.htt..*Service.*(..))"/>
    <aop:advisor advice-ref="txAdvice" pointcut-ref="dbServiceOperation"/>
  </aop:config>java

  其中的「aop:pointcut」標籤中"expression"的寫法規則以下:spring

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

    方法中參數說明post

    modifiers-pattern 可選參數 (public ,private,proteced)等 。blog

    ret-type-pattern  標識方法的返回值,須要使用全路徑的類名如java.lang.String,也能夠爲*表示任何返回值;接口

    declaring-type-pattern 可選參數事務

    name-pattern(param-pattern)是必須的.io

    name-pattern:指定方法名,*表明全部,例如set*,表明以set開頭的全部方法.
    param-pattern:指定方法參數(聲明的類型),(..)表明全部參數,(*)表明一個參數,(*,String)表明第一個參數爲任何值,第二個爲String類型.
class

    表達式例子以下:test

  任意公共方法的執行:
    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.*(..))")

  在多個表達式之間使用 ||,or表示 或,使用 &&,and表示 與,!表示 非.例如:

     <aop:config>      <aop:pointcut id="pointcut" expression="(execution(* com.ccboy.dao..*.find*(..))) or (execution(* com.ccboy.dao..*.query*(..)))"/>      <aop:advisor advice-ref="jdbcInterceptor" pointcut-ref="pointcut" />  </aop:config>

相關文章
相關標籤/搜索