com.codingapi.tx.annotation.TxTransaction Maven / Gradle / Ivy
package com.codingapi.tx.annotation;
import java.lang.annotation.*;
/**
* Created by lorne on 2017/6/26.
*/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface TxTransaction {
Class extends Throwable>[] rollbackFor() default {};
Class extends Throwable>[] noRollbackFor() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy