com.dexcoder.commons.cache.DisableCache Maven / Gradle / Ivy
package com.dexcoder.commons.cache;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 不设置自动缓存注解
*
* Created by liyd on 9/26/14.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface DisableCache {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy