2021
09-14
09-14
Spring Boot集成redis,key自定义生成方式
一)自定义rediskey生成策略@Configuration:表示当前类属于一个配置类,类似于一个spring.cfg.xml。@EnableCaching:表示支持启用缓存。自定义配置源码:importorg.springframework.cache.CacheManager;importorg.springframework.cache.annotation.CachingConfigurerSupport;importorg.springframework.cache.annotation.EnableCaching;importorg.springframework.cache.interceptor.KeyGenerator;importorg.springframewo...
继续阅读 >