Spring-Data-Redis custom annotation set expire time for SpringBoot2.X
最近研究redis缓存发现Spring虽然提供了缓存的失效时间设置,但是全局设置的,灵活度及自由度不够,因此就决定自定义注解开发在各个方法上设置缓存失效时间,开发语言为Kotlin.自定义注解:@Target(AnnotationTarget.FUNCTION)//方法级别@Retention(AnnotationRetention.RUNTIME)@Inherited//拓展性@Cacheabl