第六章 springboot + 事務

在實際開發中,其實不多會用到事務,通常狀況下事務用的比較多的是在金錢計算方面。spring

mybatis與spring集成後,其事務該怎麼作?其實很簡單,直接在上一節代碼的基礎上在相應的方法(一般是service層)上加上@Transactional註解便可。數據庫

一、com.xxx.firstboot.exception.UserExceptionspringboot

 1 package com.xxx.firstboot.exception;
 2 
 3 import org.springframework.dao.DataAccessException;
 4 
 5 /**
 6  * 自定義異常,用於測試事務
 7  */
 8 public class UserException extends DataAccessException{
 9 
10     private static final long serialVersionUID = 8901479830692029025L;
11 
12     public UserException(String msg) {
13         super(msg);
14     }
15 
16 }
View Code

說明:這是一個自定義註解,繼承了DataAccessException類。mybatis

 

二、com.xxx.firstboot.dao.UserDaoapp

1     public int insertUser(String username, String password){
2         return userMapper.insertUser(username, password);
3     }
4 
5     public void testTransactional(String username){
6         throw new UserException("測試事務");
7     }
View Code

說明:該類中對於事務的測試只使用到了兩個方法,第二個方法testTransactional拋出自定義的異常。maven

 

三、com.xxx.firstboot.service.UserServiceide

1     @Transactional
2     public void testTransaction(String username, String password){
3         System.out.println(userDao.insertUser(username, password));
4         userDao.testTransactional(username);
5     }
View Code

說明:在該方法中調用了上述的userDao的兩個方法。測試

第一個方法向數據庫插入一條數據,第二個方法拋出咱們的自定義異常,若是事務配置成功,那麼第一個方法插入數據庫會回滾,不然,插入數據成功。ui

 

四、com.xxx.firstboot.controller.UserControllerspa

 1     @ApiOperation("測試事務")
 2     @ApiImplicitParams({
 3         @ApiImplicitParam(paramType="query",name="username",dataType="String",required=true,value="用戶的姓名",defaultValue="zhaojigang"),
 4         @ApiImplicitParam(paramType="query",name="password",dataType="String",required=true,value="用戶的密碼",defaultValue="wangna")
 5     })
 6     @ApiResponses({
 7         @ApiResponse(code=400,message="請求參數沒填好"),
 8         @ApiResponse(code=404,message="請求路徑沒有或頁面跳轉路徑不對")
 9     })
10     @RequestMapping(value="/testTransaction",method=RequestMethod.GET)
11     public void testTransaction(@RequestParam("username") String username, 
12                                    @RequestParam("password") String password) {
13        userService.testTransaction(username, password);
14     }
View Code

 

測試:

使用maven命令啓動服務-->swagger運行URL-->查看數據庫是否插入成功

 

疑問:查了不少資料,mybatis與springboot集成後(數據源採用了druid),爲了添加事務,不少人會在上一節的MyBatisConfig這個類中作兩件事請

  • 在MyBatisConfig類上添加@EnableTransactionManagement註解,該註解啓用了註解式事務管理 <tx:annotation-driven />,這樣在方法上的@Transactional註解就起做用了,可是實際測試中不加這句,@Transactional註解依然有用
  • 在MyBatisConfig類中添加了獲取事務管理器的方法
    1     /**
    2      * 配置事務管理器
    3      */
    4     @Bean
    5     @Primary
    6     public DataSourceTransactionManager transactionManager() throws Exception{
    7         return new DataSourceTransactionManager(getDataSource());
    8     }
    View Code

    添加這句的做用:在使用@Transactional註解的地方使用方法中的事務管理器進行事務管理

相關文章
相關標籤/搜索