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

com.litongjava.cache.Cacheable Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
package com.litongjava.cache;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * CacheName can configure CacheInterceptor's cache name or EvictInterceptor's evict cache name.
 * 

* The order of CacheInterceptor searching for CacheName annotation:
* 1: Action method of current invocation
* 2: Controller of the current invocation
* CacheInterceptor will use the actionKey as the cache name If the CacheName annotation not found. */ @Inherited @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.TYPE, ElementType.METHOD }) public @interface Cacheable { // 缓存的名称,如果不指定默认使用类名或者方法名 String name() default ""; // 缓存的key,如果不指定使用方法名+ String value() default "";; // 生存时间,默认是1h long ttl() default 3600; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy