一、編程式事務(wù)
二、聲明式事務(wù)
1、基于XML的事務(wù)
1.1 Spring配置文件
<!-- 配置c3p0數(shù)據(jù)源,只是進(jìn)行了最簡單的配置 --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="user" value="root"></property> <property name="password" value="hss325730"></property> <property name="jdbcUrl" value="jdbc:mysql://127.0.0.1:3306/test"></property> <property name="driverClass" value="com.mysql.jdbc.Driver"></property> </bean> <!-- 配置Spring的 JdbcTemplate --> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 配置Bean --> <bean id="bookDao" class="com.zhoujian.spring.transcation.xml.BookDaoImpl"> <property name="tempate" ref="jdbcTemplate"></property> </bean> <bean id="bookService" class="com.zhoujian.spring.transcation.xml.service.impl.BookServiceImpl"> <property name="dao" ref="bookDao"></property> </bean> <bean id="batchBuy" class="com.zhoujian.spring.transcation.xml.service.impl.BatchBuyImpl"> <property name="service" ref="bookService"></property> </bean> <!-- 配置事務(wù)管理器 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 配置事務(wù)管理器屬性 并與事務(wù)管理器關(guān)聯(lián)--> <tx:advice id="myAdvice" transaction-manager="transactionManager"> <tx:attributes> <!-- 在這里一般都是使用通配符進(jìn)行配置, 或者直接配置指定的方法 --> <tx:method name="buy" propagation="REQUIRES_NEW"/> <tx:method name="get*" propagation="REQUIRED"/> <tx:method name="*"/> </tx:attributes> </tx:advice> <!-- 配置開啟事務(wù)的切入點(diǎn),使用AOP進(jìn)行切入點(diǎn)的配置,并與事務(wù)管理器屬性關(guān)聯(lián)起來 --> <aop:config> <aop:pointcut expression="execution(* com.zhoujian.spring.transcation.xml.service.*.*(..))" id="myPointcut"/> <aop:advisor advice-ref="myAdvice" pointcut-ref="myPointcut"/> </aop:config>
本文題目:詳談Spring框架之事務(wù)管理-創(chuàng)新互聯(lián)
分享路徑:http://jinyejixie.com/article10/dioedo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、小程序開發(fā)、域名注冊、企業(yè)建站、服務(wù)器托管、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容