JUnit load Spring Container as unit test _ Add transaction rollback __java

Source: Internet
Author: User
Tags rollback
When performing unit tests, set the test cell to a transaction rollback to avoid generating dirty data!!!!!
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.test.context.ContextConfiguration;
Import Org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
Import org.springframework.test.context.transaction.TransactionConfiguration;
Import org.springframework.transaction.annotation.Transactional;

Import Com.bookingctrip.api.manual.service.WalletBatchService; /** * @author YZP * @version 1.0 * @parameter * @return/@SuppressWarnings ("deprecation") @TransactionConfiguration (TransactionManager = "TransactionManager", Defaultrollback = True) @Transactional @RunWith (
Springjunit4classrunner.class) @ContextConfiguration (locations = "Classpath*:context/applicationcontext.xml")
	public class Testwalletbatch {static final Logger log = Loggerfactory.getlogger (Testwalletbatch.class); @Autowired private Walletbatchservice Batchservice;

	@Test public void Testselectprimarykeybybatchno () {String Batchno = "pay2017010901ffn6q2x0setpmv0x";
		Long Selectprimarykeybybatchno = Batchservice.selectprimarykeybybatchno (Batchno);
	System.out.print (Selectprimarykeybybatchno); }
}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.