SSM如何實現在Controller中添加事務管理

SSM在Controller中添加事務管理

本人使用:

  • 集成開發環境:idea
  • 項目管理工具:maven
  • 數據庫:oracle
  • 框架:Spring+SpringMVC+myBatis

一般而言,事務都是加在Service層的,但也可以加在Controller層。。                        

看瞭不少人的博客,總結出兩個方法:

  • 在controller層寫編程式事務
  • 將事務配置定義在Spring MVC的應用上下文(spring-mvc.xml)中

現在具體來說說怎麼實現的:

1.在controller層寫編程式事務【繁瑣,不推薦】

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"));
    } 
}

2.將事務配置定義在Spring MVC的應用上下文(spring-mvc.xml)中【簡單明瞭、一勞永逸】

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註解

SSM下Controller層的事務配置問題

在寫項目過程中遇到瞭多表聯合修改數據時的事務問題,按照之前的學習,事務都是配置在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/>。

僅為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: