源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

详解springboot中junit回滚

  • 时间:2020-11-24 16:17 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:详解springboot中junit回滚
springboot中使用junit编写单元测试,并且测试结果不影响数据库。 [b]pom引入依赖[/b] 如果是IDE生成的项目,该包已经默认引入。
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>
数据库原始数据 [img]http://files.jb51.net/file_images/article/201710/2017103016535020.png[/img] 原始数据 编写单元测试
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);
  }

}

结果数据 [img]http://files.jb51.net/file_images/article/201710/2017103016535121.png[/img] 结果数据 [b]结论[/b] 可以看出code=001001的数据没有更改,而code=001003的数据修改成功。回头看代码: @Transactional表示该方法整体为一个事务, @Rollback表示事务执行完回滚,支持传入一个参数value,默认true即回滚,false不回滚。 该注解一样支持对类的注解,若如此做,对整个class的方法有效。 [img]http://files.jb51.net/file_images/article/201710/2017103016535122.png[/img] 注解在class上 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程素材网。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部