org.springframework.test.annotation
Annotation Type NotTransactional


Deprecated. as of Spring 3.0, in favor of moving the non-transactional test method to a separate (non-transactional) test class or to a @BeforeTransaction or @AfterTransaction method.

@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
@Deprecated
public @interface NotTransactional

Test annotation to indicate that a method is not transactional.

Since:
2.0
Author:
Rod Johnson, Sam Brannen