服务器之家

服务器之家 > 正文

详解springboot中junit回滚

时间:2021-01-28 12:02     来源/作者:梦想修补师

springboot中使用junit编写单元测试,并且测试结果不影响数据库。

pom引入依赖

如果是ide生成的项目,该包已经默认引入。

?
1
2
3
4
5
<dependency>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-test</artifactid>
  <scope>test</scope>
</dependency>

数据库原始数据

详解springboot中junit回滚

原始数据

编写单元测试

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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上

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.jianshu.com/p/d9d0abf317c0?utm_source=tuicool&utm_medium=referral

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
返回顶部