CustomizedRedisCache.java 500 字节
package cn.ibizlab.util.cache.redis;

import org.springframework.data.redis.cache.RedisCache;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
import org.springframework.data.redis.cache.RedisCacheWriter;

/**
 * 自定义的redis缓存
 */
public class CustomizedRedisCache extends RedisCache {

    public CustomizedRedisCache(String name, RedisCacheWriter redisCacheWriter,RedisCacheConfiguration configuration) {
        super(name, redisCacheWriter, configuration);
    }

}