91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

spring?aop?pointcut怎么添加多個execution

發布時間:2021-11-24 11:09:49 來源:億速云 閱讀:533 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關spring aop pointcut怎么添加多個execution,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

spring aop pointcut 添加多個execution

spring aop添加多個包,用||或者or隔開

<!-- 只對業務邏輯層實施事務 -->
 <aop:config expose-proxy="true">
  <aop:pointcut expression="execution(* demo.ssh.daoImpl.*.*(..)) || execution(* demo.mes.daoImpl.*.*(..))"  
   id="txPointcut" />
  <!-- Advisor定義,切入點和通知分別為txPointcut、txAdvice -->
  <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut" />
 </aop:config>

spring aop:pointcut--expression--多個execution連接

聲明式事務,多個execution連接方法:

expression="execution(* pp.business.*.*(..)) or execution(* pp.business.impl.*.*(..))"

spring的幫助手冊里有關于execution的連接方式的一句話:

Pointcut expressions can be combined using '&&', '||' and '!'.

但是我寫上&&就會報錯。很郁悶。。。

||和or的作用相同:在符合* pp.business.*.*(..)和* pp.business.impl.*.*(..)方法上都加上事務性。

<tx:advice id="txAdvice" transaction-manager="transactionManager">  
        <tx:attributes >  
        <tx:method name="add*" propagation="REQUIRED"/>  
        <tx:method name="delete*" propagation="REQUIRED"/>  
        <tx:method name="update*" propagation="REQUIRED"/>  
        <tx:method name="insert*" propagation="REQUIRED"/>  
        <tx:method name="*" read-only="true"/>  
    </tx:attributes>  
</tx:advice>  
  
<aop:config proxy-target-class="true">  
     <aop:pointcut id="allManagerMethod" expression="execution(* pp.business.*.*(..)) or execution(* pp.business.impl.*.*(..))" />  
     <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod"/>  
</aop:config>

關于“spring aop pointcut怎么添加多個execution”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

富锦市| 思南县| 乐东| 昭平县| 隆德县| 临城县| 余姚市| 彰化县| 千阳县| 普兰店市| 屯门区| 通许县| 邮箱| 桐乡市| 磐安县| 九龙城区| 镶黄旗| 青川县| 兴义市| 巴青县| 工布江达县| 高淳县| 玉林市| 永兴县| 柳江县| 志丹县| 西林县| 济源市| 池州市| 平阳县| 靖远县| 资阳市| 肥西县| 峡江县| 疏勒县| 万年县| 彭阳县| 蚌埠市| 永昌县| 莒南县| 华池县|