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

cn.structure.starter.redisson.anno.WCache Maven / Gradle / Ivy

The newest version!
package cn.structure.starter.redisson.anno;

import java.lang.annotation.*;

/**
 * 

* 写缓存注解 *

* * @author chuck * @version 1.0.1 * @since 2020-12-23 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface WCache { /** * keyName */ String key() default ""; /** * 是否對象緩存 */ boolean isObjCache() default true; /** * 更新集合配置 */ CList list() default @CList; /** * Map 配置 */ CMap map() default @CMap; /** * 时间配置 */ CTime time() default @CTime; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy