注释类型 Commit
@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented @Inherited @Rollback(false) public @interface Commit
@Commitis a test annotation that is used to indicate that a test-managed transaction should be committed after the test method has completed.Consult the class-level Javadoc for
TransactionalTestExecutionListenerfor an explanation of test-managed transactions.When declared as a class-level annotation,
@Commitdefines the default commit semantics for all test methods within the test class hierarchy. When declared as a method-level annotation,@Commitdefines commit semantics for the specific test method, potentially overriding class-level default commit or rollback semantics.Warning:
@Commitcan be used as direct replacement for@Rollback(false); however, it should not be declared alongside@Rollback. Declaring@Commitand@Rollbackon the same test method or on the same test class is unsupported and may lead to unpredictable results.- 从以下版本开始:
- 4.2
- 作者:
- Sam Brannen
- 另请参阅:
Rollback,TransactionalTestExecutionListener