您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關SpringMVC中事務可不可以加在Controller層,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
一般而言,事務都是加在Service層的,但是愛鉆牛角尖的我時常想:事務加在Controller層可不可以。
我一直試圖證明事務不止可以加在Service層,還可以加在Controller層,但是沒有找到有力的論據來支持我這個想法,搞得我一度認為事務只能加在Service層,直到我讀過spring官方文檔并實踐之后,我知道我的想法是對的。
在spring-framework-reference.pdf文檔中有這樣一段話:
<tx:annotation-driven/> only looks for @Transactional on beans in the same application context it is defined in. This means that, if you put <tx:annotation-driven/> in a WebApplicationContext for a DispatcherServlet, it only checks for @Transactional beans in your controllers, and not your services.
這句話的意思是,<tx:annoation-driven/>只會查找和它在相同的應用上下文件中定義的bean上面的@Transactional注解,如果你把它放在Dispatcher的應用上下文中,它只檢查控制器上的@Transactional注解,而不是你services上的@Transactional注解。
于是,我將事務配置定義在Spring MVC的應用上下文(*-servlet.xml)中,將@Transactional注解打在Controller上,終于事務起作用了。
綜上,在Spring MVC中,事務不僅可以加在Service層,同樣也可以加在Controller層(雖然不推薦這么做,但至少滿足了我的好奇心,(*^__^*) 嘻嘻……)。
記錄一下自己的情況,當時是相當于二次開發,什么都是配置好的。但是很坑的是只有一個controller層,當時也沒覺得什么,就跟著在controller里面寫。結果報錯之后發現事務沒有回滾,這就很尷尬了。一檢查,配置文件里面配置了事務,注解也是寫了的,一臉懵。
讀了這篇文章后發現,自己的事務是配置在spring的配置文件(一般都是配置在這里),但是我只有controller層,那就得配置到spring-mvc的配置文件里面,換了配置后就好了。
另外,項目是配置了雙數據源。這里在記錄一下。
<!-- (事務管理)transaction manager, use JtaTransactionManager for global tx --> <bean id="transactionManagerMS"class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSourceMS" /> </bean> <!-- 可通過注解控制事務 --> <tx:annotation-driven transaction-manager="transactionManagerMS" /> <!-- (事務管理)transaction manager, use JtaTransactionManager for global tx --> <bean id="transactionManager"class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <!-- 可通過注解控制事務 --> <tx:annotation-driven transaction-manager="transactionManager" />
用的時候通過注解Transactional 就行了。但是一個controller里面涉及到兩個數據庫的事務的話就只能手動開啟事務了
package cn.hr.controller; import java.io.PrintWriter; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.TransactionDefinition; import org.springframework.transaction.TransactionStatus; import org.springframework.transaction.support.DefaultTransactionDefinition; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import cn.hr.base.action.BaseAction; import cn.hr.service.IAnnualbonuService; @Controller @RequestMapping(value="/demoTest") public class DemoTestController extends BaseAction<Object>{ @Autowired private IAnnualbonuService annualbonuService; @Autowired private PlatformTransactionManager transactionManager; /** * * @param payNamelist * @param request * @param response * @param session */ @RequestMapping(value = "/deletePayNamelist",method = RequestMethod.POST) public void deletePayNamelist(HttpServletRequest request, HttpServletResponse response,HttpSession session) { PrintWriter out = null; TransactionStatus status = this.transaction(); try { //=====================業務邏輯處理地方================================ out=response.getWriter(); out.write("0"); out.flush(); transactionManager.commit(status); } catch (Exception e) { transactionManager.rollback(status); out.write(""); out.flush(); logger.error(e); }finally{ out.flush(); out.close(); } } private TransactionStatus transaction(){ DefaultTransactionDefinition defaultTransactionDefinition = new DefaultTransactionDefinition(); defaultTransactionDefinition.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED); TransactionStatus status = transactionManager.getTransaction(defaultTransactionDefinition); return status; } }
主要是transaction這個方法,意思是:new 一個新的事務,再設置自己所需要的事務隔離級別,最后通過注入的transactionManager得到該事務即可。
關于“SpringMVC中事務可不可以加在Controller層”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。