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

com.github.dreamroute.locker.anno.Locker Maven / Gradle / Ivy

Go to download

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