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

溫馨提示×

溫馨提示×

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

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

springboot中junit回滾的作用是什么

發布時間:2022-04-07 14:19:17 來源:億速云 閱讀:139 作者:iii 欄目:編程語言

這篇文章主要講解了“springboot中junit回滾的作用是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“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回滾的作用是什么”的內容了,經過本文的學習后,相信大家對springboot中junit回滾的作用是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

探索| 甘泉县| 磐安县| 西昌市| 舒城县| 滁州市| 大同市| 乌恰县| 罗山县| 宁蒗| 宁城县| 石渠县| 闵行区| 遵义市| 固安县| 永新县| 巴南区| 屏东县| 营口市| 鹿邑县| 崇左市| 绿春县| 佛学| 喀什市| 乐都县| 湟源县| 陇西县| 水城县| 丹巴县| 浦城县| 论坛| 浦北县| 汤原县| 通海县| 瑞金市| 绥棱县| 丹棱县| 多伦县| 英山县| 华蓥市| 兰州市|