溫馨提示×

溫馨提示×

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

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

springboot中junit回滾有什么用

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

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

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

pom引入依賴

如果是IDE生成的項目,該包已經(jīng)默認引入。

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

數(shù)據(jù)庫原始數(shù)據(jù)

springboot中junit回滾有什么用

原始數(shù)據(jù)

編寫單元測試

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

}

結果數(shù)據(jù)

springboot中junit回滾有什么用

結果數(shù)據(jù)

結論

可以看出code=001001的數(shù)據(jù)沒有更改,而code=001003的數(shù)據(jù)修改成功?;仡^看代碼:

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

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

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

springboot中junit回滾有什么用

注解在class上

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

向AI問一下細節(jié)

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

AI