com.github.dreamroute.locker.anno.Locker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of locker-spring-boot-starter Show documentation
Show all versions of locker-spring-boot-starter Show documentation
Parent pom providing dependency and plugin management for applications built with Maven
The newest version!
package com.github.dreamroute.locker.anno;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* 乐观锁标记,被此注解标记的update方法将被插件拦截改写sql
*
* @author w.dehi
*/
@Target(METHOD)
@Retention(RUNTIME)
public @interface Locker {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy