91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot中junit回滾有什么用

發布時間:2021-07-08 10:18:14 來源:億速云 閱讀:135 作者:小新 欄目:編程語言

小編給大家分享一下springboot中junit回滾有什么用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

springboot中使用junit編寫單元測試,并且測試結果不影響數據庫。

pom引入依賴

如果是IDE生成的項目,該包已經默認引入。

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>

數據庫原始數據

springboot中junit回滾有什么用

原始數據

編寫單元測試

package com.mos.quote;

import com.mos.quote.model.Area;
import com.mos.quote.service.IAreaService;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.transaction.annotation.Transactional;

import java.util.List;

@RunWith(SpringRunner.class)
@SpringBootTest
public class QuoteApplicationTests {

  @Autowired
  private IAreaService areaService;

  @Test
  public void contextLoads() {
  }

  @Test
  public void testUpdate(){
    Area area = new Area();
    area.setCode("001003");
    area.setName("洛陽市");
    Integer result = areaService.update(area);
    Assert.assertEquals(1, (long)result);
  }

  @Test
  @Transactional
  @Rollback
  public void testUpdate4Rollback(){
    Area area = new Area();
    area.setCode("001001");
    area.setName("鄭州市123");
    Integer result = areaService.update(area);
    Assert.assertEquals(1, (long)result);
  }

}

結果數據

springboot中junit回滾有什么用

結果數據

結論

可以看出code=001001的數據沒有更改,而code=001003的數據修改成功。回頭看代碼:

@Transactional表示該方法整體為一個事務,

@Rollback表示事務執行完回滾,支持傳入一個參數value,默認true即回滾,false不回滾。

該注解一樣支持對類的注解,若如此做,對整個class的方法有效。

springboot中junit回滾有什么用

注解在class上

看完了這篇文章,相信你對“springboot中junit回滾有什么用”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

来安县| 蒙阴县| 濮阳县| 阿鲁科尔沁旗| 泰顺县| 沭阳县| 巴彦县| 富民县| 疏附县| 景德镇市| 涪陵区| 阿坝县| 仙居县| 玉树县| 重庆市| 浮梁县| 鲁山县| 长治市| 靖安县| 昌都县| 岢岚县| 清远市| 永寿县| 名山县| 宜阳县| 宽甸| 东乌珠穆沁旗| 万安县| 定西市| 手游| 正镶白旗| 铅山县| 饶阳县| 博湖县| 重庆市| 三门峡市| 民勤县| 海兴县| 陆良县| 福建省| 三穗县|