欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解springboot中junit回滚

程序员文章站 2024-04-02 10:43:28
springboot中使用junit编写单元测试,并且测试结果不影响数据库。 pom引入依赖 如果是ide生成的项目,该包已经默认引入。 &l...

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上

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