您好,登錄后才能下訂單哦!
這篇文章主要介紹“SSM怎么實現在Controller中添加事務管理”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“SSM怎么實現在Controller中添加事務管理”文章能幫助大家解決問題。
本人使用:
集成開發環境:idea
項目管理工具:maven
數據庫:oracle
框架:Spring+SpringMVC+myBatis
一般而言,事務都是加在Service層的,但也可以加在Controller層。。
看了不少人的博客,總結出兩個方法:
在controller層寫編程式事務
將事務配置定義在Spring MVC的應用上下文(spring-mvc.xml)中
現在具體來說說怎么實現的:
spring-mybatis.xml中事物管理器的配置依舊
<!-- 配置數據源事務 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <!-- 注解方式配置事務 @Transactional 但因為是在controller中寫編程式事務,這里可以不配置<tx:annotation-driven transaction-manager="transactionManager" /> --> <tx:annotation-driven transaction-manager="transactionManager" />
在controller中的方法里編寫事務
//在每個controller中注入transactionManager @Resource private PlatformTransactionManager transactionManager; @PostMapping(value = "setCode") @ResponseBody public void setCode(Invoice invoice, InvoiceAddress invoiceAddress,String token,String orderIDs, Integer pid,HttpServletResponse response){ DefaultTransactionDefinition defaultTransactionDefinition = new DefaultTransactionDefinition(); defaultTransactionDefinition.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED); TransactionStatus status = transactionManager.getTransaction(defaultTransactionDefinition); try { invoiceService.insert(token,pid,invoice); int iID= invoice.getId(); String substring = orderIDs.substring(0, orderIDs.length()-1); String[] split = substring.split(","); for (String string2 : split) { bOrderService.updateIStatus("1",string2); } invoiceOrderService.insert(iID,substring); if(Integer.parseInt(invoice.getiType())==1){ invoiceAddressService.insert(iID,invoiceAddress); } System.out.println("======制造一個運行時異常aa======"); System.out.println("運行時異常:"+100/0); //沒有異常便手動提交事務 transactionManager.commit(status); printJson(response,result(200,"ok")); }catch (Exception e){ //有異常便回滾事務 transactionManager.rollback(status); e.printStackTrace(); printJson(response,result(500,"false")); } }
spring-mybatis.xml中事物管理器配置不變
在spring-mvc.xml中也定義事務配置:
<!-- 命名空間中 加入: xmlns:tx="http://www.springframework.org/schema/tx" http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd --> <tx:annotation-driven/>
將@Transactional(rollbackFor = { Exception.class })注解打在Controller上
@Controller @RequestMapping(value = "/invoiceC") @Transactional(rollbackFor = { Exception.class }) public class InvoiceController extends BaseController { @Autowired private InvoiceService invoiceService; @Autowired private InvoiceOrderService invoiceOrderService; @Autowired private InvoiceAddressService invoiceAddressService; @Autowired private BalanceRechangeOrderService bOrderService; @PostMapping(value = "setCode") @ResponseBody public void setCode(Invoice invoice, InvoiceAddress invoiceAddress,String token,String orderIDs, Integer pid,HttpServletResponse response){ invoiceService.insert(token,pid,invoice); int iID= invoice.getId(); String substring = orderIDs.substring(0, orderIDs.length()-1);//截取最后一個 String[] split = substring.split(",");//以逗號分割 for (String string2 : split) { bOrderService.updateIStatus("1",string2); } invoiceOrderService.insert(iID,substring); if(Integer.parseInt(invoice.getiType())==1){ //紙質發票,收貨地址 invoiceAddressService.insert(iID,invoiceAddress); } System.out.println("======制造一個運行時異常aa======"); System.out.println("運行時異常:"+100/0); printJson(response,result(200,"ok")); } }
現在,我們來談談為什么之前??==》
在spring-mybatis.xml的<aop:config>添加對Controller的聲明式事務攔截
在Controller的class加上@Transactional
兩者均未生效呢???
原理:因為spring容器和spring-mvc是父子容器。在服務器啟動時,會先加載web.xml配置文件 ==> 再加載spring配置文件 ==> 再回到web.xml【加載監聽器;加載過濾器;加載前端控制器】==>再加載springMVC配置文件
在Spring配置文件中,我們掃描注冊的是service實現類,就算掃描注冊了controller 也會在后面加載SpringMVC配置文件[掃描注冊controller]覆蓋掉,所以想要在controller中實現事務管理,僅在spring配置文件配置<tx:annotation-driven>或<aop:config>是沒有效果的,必須將事務配置定義在Spring MVC的應用上下文(spring-mvc.xml)中。
因為在spring-framework-reference.pdf文檔中說明了:
<tx:annoation-driven/>只會查找和它在相同的應用上下文件中定義的bean上面的@Transactional注解
在寫項目過程中遇到了多表聯合修改數據時的事務問題,按照之前的學習,事務都是配置在service層中的,但是我的項目模塊里一個service對應一個數據表,所以想在controller層加一個針對多個表的數據修改以及添加的事務配置。悲慘的是,在controller層配置事務出錯沒有回滾!
按照我已所接觸的邏輯,控制層是不建議寫業務邏輯的,所以在里面調用的是多個service層的接口(使用Autowired)來調用多個表的業務操作。但是多個表形成一個事務,所以我沒找在service層里單獨添加事務的合適的方法。如果有前輩想到合適的方法,望賜教!叩謝!
原來的配置
首先是在service層上添加事務的配置,我這里的事務處理采用的是注解的方式,所以配置文件相較于配置事務的方式大大簡化了。
首先命名空間中加入:
xmlns:tx="http://www.springframework.org/schema/tx" http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
然后是xml文件的配置:
<!-- service除了業務(操作dao)還要有事務 --> <tx:annotation-driven transaction-manager="txManager" /> <!-- 配置Spring的聲明式事務管理器 --> <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean>
其中,數據源我是配置在了dao層的配置文件中,由于都在spring的管理之下,所以在service直接使用是能夠找到的。
以下是我的maven依賴的jar包版本:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-tx --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>5.1.5.RELEASE</version> </dependency> <!-- Spring jdbc事務管理 --> <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>5.1.5.RELEASE</version> </dependency>
以上是我起初的配置。但是僅僅這樣是無法在controller層添加事務的。
修正后的配置
在service層的配置文件不變的情況下,我們想要在controller層添加事務,只需要在spring-mvc.xml中引入事務的注解驅動標簽即可。
<!--在xml文件頭部引入命名空間,參考serviice層--> <tx:annotation-driven/>
首先我們來看配置文件的加載:
<!-- 配置前端控制器 --> <servlet> <servlet-name>DispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>DispatcherServlet</servlet-name> <url-pattern>*.action</url-pattern> </servlet-mapping> <!-- 配置spring容器加載的監聽器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-*.xml</param-value> </context-param>
以上是我的web.xml的部分配置。在項目啟動過程中,加載spring-mvc.xml是使用DispatcherServlet加載的,而加載spring-service.xml與spring-dao.xml使用的是ContextLoaderListener。
然后我們需要知道的是,ContextLoaderListener是早于DispatcherServlet啟動的,而在ContextLoaderListener加載service層配置時controller并沒有加載到容器中,但是此時事務的動態代理已經切入到了service層,所以后續的controller層并沒有被增強。
因此,我們需要在controller層再次加入 <tx:annotation-driven/>。
關于“SSM怎么實現在Controller中添加事務管理”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。