亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

junit單元測試事務自動回滾的方法

發布時間:2021-06-29 15:16:34 來源:億速云 閱讀:759 作者:chen 欄目:大數據

本篇內容主要講解“junit單元測試事務自動回滾的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“junit單元測試事務自動回滾的方法”吧!

junit 單元測試事務會自動回滾。 通過@Rollback(true)注解來實現,默認是true,事務會回滾,可以不寫。false時事務不會回滾,數據會寫到數據庫中。

package com.xiaolyuh.service;
 
import java.util.Date;
 
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
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 com.alibaba.fastjson.JSON;
import com.xiaolyuh.entity.RewardCouponDetail;
import com.xiaolyuh.mapper.RewardCouponDetailMapper;
 
@RunWith(SpringRunner.class)
@SpringBootTest
public class RewardCouponDetailServiceTest{
 
	private static final Logger logger = LoggerFactory.getLogger(RewardCouponDetailServiceTest.class);
	
	@Autowired
	private RewardCouponDetailMapper rewardCouponDetailMapper;
    
    
	@Test
	@Transactional
	@Rollback(true)// 事務自動回滾,默認是true。可以不寫
	public void TestCustomer(){
		RewardCouponDetail rewardCouponDetail = new RewardCouponDetail();
		rewardCouponDetail.setRewardInfoId(1L);
		rewardCouponDetail.setCouponId("1");
		rewardCouponDetail.setCouponDetailId(1L);
		rewardCouponDetail.setCreateTime(new Date());
		rewardCouponDetailMapper.insert(rewardCouponDetail);
		logger.info(JSON.toJSONString(rewardCouponDetail));
		Assert.assertNotNull(rewardCouponDetail.getId());
	}
	
}

到此,相信大家對“junit單元測試事務自動回滾的方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

县级市| 通辽市| 新和县| 鄂尔多斯市| 平武县| 蒙山县| 惠东县| 遂昌县| 双江| 贞丰县| 湘阴县| 沛县| 吉木萨尔县| 临江市| 尖扎县| 上高县| 桂东县| 河北区| 桦甸市| 光山县| 资源县| 庆城县| 凤翔县| 临夏市| 崇信县| 曲松县| 贵南县| 石棉县| 潢川县| 普兰店市| 化德县| 东城区| 高台县| 当阳市| 铁力市| 万州区| 威海市| 白银市| 襄樊市| 大悟县| 舟曲县|