All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.lingkang.finalsql.annotation.Transactional Maven / Gradle / Ivy

The newest version!
package top.lingkang.finalsql.annotation;

import java.lang.annotation.*;

/**
 * @author lingkang
 * 2023/1/17
 * 事务注解,将开启事务,注意,此事务在spring环境中依赖了AOP切面才能生效
 **/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Transactional {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy