中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

府谷县| 曲周县| 平度市| 临沧市| 图木舒克市| 方城县| 突泉县| 喀喇| 鄱阳县| 东山县| 阿图什市| 江永县| 池州市| 盐山县| 陆丰市| 托里县| 栖霞市| 德保县| 肃北| 神池县| 竹溪县| 汶川县| 梁河县| 塔城市| 兴海县| 西藏| 富源县| 南郑县| 那坡县| 建宁县| 凤城市| 正宁县| 合山市| 响水县| 故城县| 高州市| 大同县| 潞西市| 河北省| 德庆县| 延边|