com.yupaits.commons.annotation.NoCache Maven / Gradle / Ivy
package com.yupaits.commons.annotation;
import java.lang.annotation.*;
/**
* 该注解用于标注不需要使用缓存的类或方法
* @author yupaits
* @date 2019/2/27
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NoCache {
}