Spring-mvc How do I roll back in JUnit unit tests?

Source: Internet
Author: User

@RunWith (Springjunit4classrunner.class)@WebAppConfiguration (value ="Src/main/webapp")@ContextHierarchy ({@ContextConfiguration (name ="Parent", locations ="Classpath:./spring/applicationcontext.xml")})PublicClassmessagetest {@AutowiredPrivate Webapplicationcontext WAC;Private MOCKMVC Mockmvc;@BeforePublicvoidSetUp() {MOCKMVC = Mockmvcbuilders.webappcontextsetup (WAC). build ();} @Test public void testtemppage ()  Throws Exception {Mockmvc.perform (Mockmvcrequestbuilders.get ( @Test public void testaddtemp ()  Throws Exception {Mockmvc.perform (mockmvcrequestbuilders.post ( "name",  "new Test 3"). Param ( 

Testaddtemp added a day record, how to make this test add the action automatically rollback?

    • September 16, 2015 question
    • Comments
    • Invitation to answer
1 answers

1

Adopted
@RunWith (Springjunit4classrunner.class)@WebAppConfiguration (value ="Src/main/webapp")@ContextHierarchy ({@ContextConfiguration (name ="Parent", locations ="Classpath:./spring/applicationcontext.xml")})@TransactionConfiguration (TransactionManager ="TransactionManager", Defaultrollback =True@TransactionalPublicClassmessagetest {@AutowiredPrivate Webapplicationcontext WAC;Private MOCKMVC Mockmvc;@BeforePublicvoidSetUp() {MOCKMVC = Mockmvcbuilders.webappcontextsetup (WAC). build ();}@Testpublic void testTempPage () throws Exception {mockmvc.perform (Mockmvcrequestbuilders.get ( Span class= "hljs-string" > "/msg/temp/page/v1")); }  @Test  @Rollback (true) Span class= "hljs-function" >public void testaddtemp () throws Exception { Mockmvc.perform (Mockmvcrequestbuilders.post (" "Name",  "new Test 3"). Param ( "content", " nice Roll ")); }} 

It is generally sufficient to add @transactional to your test class, and spring will roll back by default.
A simpler approach: direct inheritanceAbstractTransactionalJUnit4SpringContextTests

Spring-mvc How do I roll back in JUnit unit tests?

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.