Springboot 2.0.x Redis缓存Key生成器,自定义生成器

Posted 简简单单OnlineZuozuo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot 2.0.x Redis缓存Key生成器,自定义生成器相关的知识,希望对你有一定的参考价值。

文章目录

Springboot 2.0.x Redis缓存Key生成器,自定义生成器


1、默认的Key生成策略

首先看看生成器接口的源码


package org.springframework.cache.interceptor;

import java.lang.reflect.Method;

/**
 * Cache key generator. Used for creating a key based on the given method
 * (used as context) and its parameters.
 *
 * @author Costin Leau
 * @author Chris Beams
 * @author Phillip Webb
 * @since 3.1
 */
@FunctionalInterface
public interface KeyGenerator 

	

以上是关于Springboot 2.0.x Redis缓存Key生成器,自定义生成器的主要内容,如果未能解决你的问题,请参考以下文章

Shiro整合Springboot缓存之Redis实现

SpringBoot缓存管理之整合Redis缓存的实现

springboot redis 缓存对象

springboot中使用RedisTemplate实现redis数据缓存

SpringBoot 整合 Redis缓存

SpringBoot+Mybatis+redis实现二级缓存