com.gitee.fufu669.aspect.CacheFetchLater Maven / Gradle / Ivy
package com.gitee.fufu669.aspect;
import com.gitee.fufu669.common.CacheKeyCommon;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** 首次调用没有数据就去捞数据,自动缓存,每次调用后会后台更新缓存数据,下一次再调用就是最新的数据。 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
/** @author wangfupeng */
public @interface CacheFetchLater {
/*Integer 刷新之间的间隔秒数,默认是-1,意思是立即刷新。*/
int refreshSeconds() default CacheKeyCommon.CACHEFETCHLATERAOP_REFRESH_EXPIRE_SECONDS;
/*Integer redis的缓存存在最长秒数,默认是666666,约一周。*/
int expireSeconds() default CacheKeyCommon.CACHESERVICE_REDIS_DEFAULT_EXPIRED_SECONDS_1_WEEK;
/*在打印日志时会出现的提示*/
String description() default "";
}