小編給大家分享一下springboot中junit回滾有什么用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)建站自2013年創(chuàng)立以來,我們提供高端網(wǎng)站建設(shè)、小程序定制開發(fā)、電商視覺設(shè)計、app軟件開發(fā)及網(wǎng)絡(luò)營銷搜索優(yōu)化服務(wù),在傳統(tǒng)互聯(lián)網(wǎng)與移動互聯(lián)網(wǎng)發(fā)展的背景下,我們堅守著用標(biāo)準(zhǔn)的設(shè)計方案與技術(shù)開發(fā)實力作基礎(chǔ),以企業(yè)及品牌的互聯(lián)網(wǎng)商業(yè)目標(biāo)為核心,為客戶打造具商業(yè)價值與用戶體驗的互聯(lián)網(wǎng)+產(chǎn)品。
springboot中使用junit編寫單元測試,并且測試結(jié)果不影響數(shù)據(jù)庫。
pom引入依賴
如果是IDE生成的項目,該包已經(jīng)默認(rèn)引入。
org.springframework.boot spring-boot-starter-test test
數(shù)據(jù)庫原始數(shù)據(jù)
原始數(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); } }
結(jié)果數(shù)據(jù)
結(jié)果數(shù)據(jù)
結(jié)論
可以看出code=001001的數(shù)據(jù)沒有更改,而code=001003的數(shù)據(jù)修改成功?;仡^看代碼:
@Transactional表示該方法整體為一個事務(wù),
@Rollback表示事務(wù)執(zhí)行完回滾,支持傳入一個參數(shù)value,默認(rèn)true即回滾,false不回滾。
該注解一樣支持對類的注解,若如此做,對整個class的方法有效。
注解在class上
看完了這篇文章,相信你對“springboot中junit回滾有什么用”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!