springboot 對新人來說可能上手比springmvc要快,但是對于各位從springmvc轉戰(zhàn)到springboot的話,有些地方還需要適應下,尤其是xml配置。我個人是比較喜歡注解➕xml是因為看著方便,查找方便,清晰明了。但是xml完全可以使用注解代替,今天就扒一扒springboot中事務使用注解的玩法。
創(chuàng)新互聯公司專注于永定企業(yè)網站建設,響應式網站建設,商城網站制作。永定網站建設公司,為永定等地區(qū)提供建站服務。全流程定制設計,專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯公司專業(yè)和態(tài)度為您提供的服務springboot的事務也主要分為兩大類,一是xml聲明式事務,二是注解事務,注解事務也可以實現類似聲明式事務的方法,關于注解聲明式事務,目前網上搜索不到合適的資料,所以在這里,我將自己查找和總結的幾個方法寫到這里,大家共同探討
springboot 之 xml事務
可以使用 @ImportResource("classpath:transaction.xml")
引入該xml的配置,xml的配置如下
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" ></property> </bean> <tx:advice id="cftxAdvice" transaction-manager="txManager"> <tx:attributes> <tx:method name="query*" propagation="SUPPORTS" read-only="true" ></tx:method> <tx:method name="get*" propagation="SUPPORTS" read-only="true" ></tx:method> <tx:method name="select*" propagation="SUPPORTS" read-only="true" ></tx:method> <tx:method name="*" propagation="REQUIRED" rollback-for="Exception" ></tx:method> </tx:attributes> </tx:advice> <aop:config> <aop:pointcut id="allManagerMethod" expression="execution (* com.exmaple.fm..service.*.*(..))" /> <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod" order="0" /> </aop:config> </beans>
網站欄目:SpringBoot注解事務聲明式事務的方式-創(chuàng)新互聯
當前網址:http://aaarwkj.com/article48/jshep.html
成都網站建設公司_創(chuàng)新互聯,為您提供軟件開發(fā)、營銷型網站建設、靜態(tài)網站、自適應網站、關鍵詞優(yōu)化、網頁設計公司
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯