cn.pomit.mybatis.annotation.Transactional Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-proxy Show documentation
Show all versions of mybatis-proxy Show documentation
easily use mybatis on non-spring project
The newest version!
package cn.pomit.mybatis.annotation;
import java.lang.annotation.*;
@Inherited
@Target({ ElementType.TYPE})
@Retention(value = RetentionPolicy.RUNTIME)
public @interface Transactional {
Class extends Throwable>[] rollbackFor() default {};
}