first commit
This commit is contained in:
@ -0,0 +1,71 @@
|
||||
package com.qiaoba.common.redis.config;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
||||
import com.fasterxml.jackson.annotation.PropertyAccessor;
|
||||
import com.fasterxml.jackson.databind.DeserializationFeature;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator;
|
||||
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
|
||||
import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.data.redis.cache.RedisCacheConfiguration;
|
||||
import org.springframework.data.redis.cache.RedisCacheManager;
|
||||
import org.springframework.data.redis.cache.RedisCacheWriter;
|
||||
import org.springframework.data.redis.connection.RedisConnectionFactory;
|
||||
import org.springframework.data.redis.core.RedisTemplate;
|
||||
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
|
||||
import org.springframework.data.redis.serializer.RedisSerializationContext;
|
||||
import org.springframework.data.redis.serializer.RedisSerializer;
|
||||
import org.springframework.data.redis.serializer.StringRedisSerializer;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
/**
|
||||
* Redis 基础配置
|
||||
*
|
||||
* @author ailanyin
|
||||
* @version 1.0
|
||||
* @since 2021/10/2 0003 下午 17:44
|
||||
*/
|
||||
@Configuration
|
||||
@AutoConfigureBefore(RedisAutoConfiguration.class)
|
||||
public class RedisConfig {
|
||||
|
||||
@Bean
|
||||
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
|
||||
RedisSerializer<Object> serializer = redisSerializer();
|
||||
RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
|
||||
redisTemplate.setConnectionFactory(redisConnectionFactory);
|
||||
redisTemplate.setKeySerializer(new StringRedisSerializer());
|
||||
redisTemplate.setValueSerializer(serializer);
|
||||
redisTemplate.setHashKeySerializer(new StringRedisSerializer());
|
||||
redisTemplate.setHashValueSerializer(serializer);
|
||||
redisTemplate.afterPropertiesSet();
|
||||
return redisTemplate;
|
||||
}
|
||||
|
||||
@Bean
|
||||
public RedisSerializer<Object> redisSerializer() {
|
||||
//创建JSON序列化器
|
||||
Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<>(Object.class);
|
||||
ObjectMapper objectMapper = new ObjectMapper();
|
||||
objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
|
||||
//实体类存在子类继承父类,必须设置
|
||||
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
|
||||
//必须设置,否则无法将JSON转化为对象,会转化成Map类型
|
||||
objectMapper.activateDefaultTyping(LaissezFaireSubTypeValidator.instance, ObjectMapper.DefaultTyping.NON_FINAL);
|
||||
serializer.setObjectMapper(objectMapper);
|
||||
return serializer;
|
||||
}
|
||||
|
||||
@Bean
|
||||
public RedisCacheManager redisCacheManager(RedisConnectionFactory redisConnectionFactory) {
|
||||
RedisCacheWriter redisCacheWriter = RedisCacheWriter.nonLockingRedisCacheWriter(redisConnectionFactory);
|
||||
//设置Redis缓存有效期为1天
|
||||
RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig()
|
||||
.serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(redisSerializer())).entryTtl(Duration.ofDays(1));
|
||||
return new RedisCacheManager(redisCacheWriter, redisCacheConfiguration);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
package com.qiaoba.common.redis.constants;
|
||||
|
||||
/**
|
||||
* 缓存的key 常量
|
||||
*
|
||||
* @author ailanyin
|
||||
* @version 1.0
|
||||
* @since 2021/10/2 0002 下午 17:41
|
||||
*/
|
||||
public class CacheConstant {
|
||||
|
||||
/**
|
||||
* 登录用户 redis key
|
||||
*/
|
||||
public static final String LOGIN_USER_KEY = "login_users:";
|
||||
|
||||
/**
|
||||
* 验证码 redis key
|
||||
*/
|
||||
public static final String CAPTCHA_CODE_KEY = "captcha_codes:";
|
||||
|
||||
/**
|
||||
* 参数管理 cache key
|
||||
*/
|
||||
public static final String SYS_CONFIG_KEY = "sys_config:";
|
||||
|
||||
/**
|
||||
* 字典管理 cache key
|
||||
*/
|
||||
public static final String SYS_DICT_KEY = "sys_dict:";
|
||||
|
||||
/**
|
||||
* 防重提交 redis key
|
||||
*/
|
||||
public static final String REPEAT_SUBMIT_KEY = "repeat_submit:";
|
||||
|
||||
/**
|
||||
* 限流 redis key
|
||||
*/
|
||||
public static final String RATE_LIMIT_KEY = "rate_limit:";
|
||||
|
||||
/**
|
||||
* 登录账户密码错误次数 redis key
|
||||
*/
|
||||
public static final String PWD_ERR_CNT_KEY = "pwd_err_cnt:";
|
||||
|
||||
/**
|
||||
* 角色拥有的权限Set
|
||||
*/
|
||||
public static final String ROLE_PERMS = "role_perms:role_";
|
||||
}
|
@ -0,0 +1,357 @@
|
||||
package com.qiaoba.common.redis.service;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* 自定义Redis接口
|
||||
*
|
||||
* @author ailanyin
|
||||
* @version 1.0
|
||||
* @since 2021/10/2 0002 下午 17:41
|
||||
*/
|
||||
public interface RedisService {
|
||||
|
||||
/**
|
||||
* 保存为 Set
|
||||
*
|
||||
* @param key key
|
||||
* @param value value
|
||||
* @param time 存活时间 单位秒
|
||||
*/
|
||||
void set(String key, Object value, long time);
|
||||
|
||||
/**
|
||||
* 保存为 Set, 永久
|
||||
*
|
||||
* @param key key
|
||||
* @param value value
|
||||
*/
|
||||
void set(String key, Object value);
|
||||
|
||||
/**
|
||||
* 通过 key 获取值
|
||||
*
|
||||
* @param key key
|
||||
* @return Object
|
||||
*/
|
||||
Object get(String key);
|
||||
|
||||
/**
|
||||
* 删除 key
|
||||
*
|
||||
* @param key key
|
||||
* @return Boolean
|
||||
*/
|
||||
Boolean del(String key);
|
||||
|
||||
/**
|
||||
* 批量删除
|
||||
*
|
||||
* @param collection keys
|
||||
*/
|
||||
void del(Collection<String> collection);
|
||||
|
||||
|
||||
/**
|
||||
* 设置过期时间
|
||||
*
|
||||
* @param key key
|
||||
* @param time 存活时间 单位秒
|
||||
* @return Boolean
|
||||
*/
|
||||
Boolean expire(String key, long time);
|
||||
|
||||
/**
|
||||
* 获取过期时间
|
||||
*
|
||||
* @param key key
|
||||
* @return long 单位秒
|
||||
*/
|
||||
Long getExpire(String key);
|
||||
|
||||
/**
|
||||
* 判断是否有该属性
|
||||
*
|
||||
* @param key key
|
||||
* @return Boolean
|
||||
*/
|
||||
Boolean hasKey(String key);
|
||||
|
||||
/**
|
||||
* 按 delta 递增
|
||||
* <p>
|
||||
* value = value + delta
|
||||
*
|
||||
* @param key key
|
||||
* @param delta 值
|
||||
* @return Long 操作后的值
|
||||
*/
|
||||
Long incr(String key, long delta);
|
||||
|
||||
/**
|
||||
* 按 delta 递减
|
||||
* <p>
|
||||
* value = value - delta
|
||||
*
|
||||
* @param key key
|
||||
* @param delta 值
|
||||
* @return Long 操作后的值
|
||||
*/
|
||||
Long decr(String key, long delta);
|
||||
|
||||
/**
|
||||
* 获取Hash结构中的属性
|
||||
*
|
||||
* @param key key
|
||||
* @param hashKey hashKey
|
||||
* @return Object
|
||||
*/
|
||||
Object hGet(String key, String hashKey);
|
||||
|
||||
/**
|
||||
* 向Hash结构中放入一个属性
|
||||
*
|
||||
* @param key key
|
||||
* @param hashKey hashKey
|
||||
* @param value value
|
||||
* @param time 存活时间 单位秒
|
||||
* @return Boolean
|
||||
*/
|
||||
Boolean hSet(String key, String hashKey, Object value, long time);
|
||||
|
||||
/**
|
||||
* 向Hash结构中放入一个属性 永久
|
||||
*
|
||||
* @param key key
|
||||
* @param hashKey hashKey
|
||||
* @param value value
|
||||
*/
|
||||
void hSet(String key, String hashKey, Object value);
|
||||
|
||||
/**
|
||||
* 直接获取整个Hash结构
|
||||
*
|
||||
* @param key key
|
||||
* @return Map<Object, Object>
|
||||
*/
|
||||
Map<Object, Object> hGetAll(String key);
|
||||
|
||||
/**
|
||||
* 直接设置整个Hash结构
|
||||
*
|
||||
* @param key key
|
||||
* @param map map
|
||||
* @param time 存活时间 单位秒
|
||||
* @return Boolean
|
||||
*/
|
||||
Boolean hSetAll(String key, Map<String, Object> map, long time);
|
||||
|
||||
/**
|
||||
* 直接设置整个Hash结构
|
||||
*
|
||||
* @param key key
|
||||
* @param map map
|
||||
*/
|
||||
void hSetAll(String key, Map<String, ?> map);
|
||||
|
||||
/**
|
||||
* 删除Hash结构中的属性
|
||||
*
|
||||
* @param key key
|
||||
* @param hashKey hashKey
|
||||
*/
|
||||
void hDel(String key, Object... hashKey);
|
||||
|
||||
/**
|
||||
* 判断Hash结构中是否有该属性
|
||||
*
|
||||
* @param key key
|
||||
* @param hashKey hashKey
|
||||
* @return Boolean
|
||||
*/
|
||||
Boolean hHasKey(String key, String hashKey);
|
||||
|
||||
/**
|
||||
* Hash结构中属性递增
|
||||
*
|
||||
* @param key key
|
||||
* @param hashKey hashKey
|
||||
* @param delta 数值
|
||||
* @return 操作后最终的值
|
||||
*/
|
||||
Long hIncr(String key, String hashKey, Long delta);
|
||||
|
||||
/**
|
||||
* Hash结构中属性递减
|
||||
*
|
||||
* @param key key
|
||||
* @param hashKey hashKey
|
||||
* @param delta 数值
|
||||
* @return 操作后最终的值
|
||||
*/
|
||||
Long hDecr(String key, String hashKey, Long delta);
|
||||
|
||||
/**
|
||||
* 获取Set结构
|
||||
*
|
||||
* @param key key
|
||||
* @return Set<Object>
|
||||
*/
|
||||
Set<Object> sMembers(String key);
|
||||
|
||||
/**
|
||||
* 向Set结构中添加属性
|
||||
*
|
||||
* @param key key
|
||||
* @param values values
|
||||
* @return 被添加到集合中的新元素的数量,不包括被忽略的元素
|
||||
*/
|
||||
Long sAdd(String key, Object... values);
|
||||
|
||||
/**
|
||||
* 向Set结构中添加属性
|
||||
*
|
||||
* @param key key
|
||||
* @param time 存活时间 单位秒
|
||||
* @param values values
|
||||
* @return 被添加到集合中的新元素的数量,不包括被忽略的元素
|
||||
*/
|
||||
Long sAdd(String key, long time, Object... values);
|
||||
|
||||
/**
|
||||
* 是否为Set中的属性
|
||||
*
|
||||
* @param key key
|
||||
* @param value value
|
||||
* @return Boolean
|
||||
*/
|
||||
Boolean sIsMember(String key, Object value);
|
||||
|
||||
/**
|
||||
* 获取Set结构的长度
|
||||
*
|
||||
* @param key key
|
||||
* @return Set结构的长度
|
||||
*/
|
||||
Long sSize(String key);
|
||||
|
||||
/**
|
||||
* 删除Set结构中的属性
|
||||
*
|
||||
* @param key key
|
||||
* @param values values
|
||||
* @return 被成功移除的元素的数量,不包括被忽略的元素
|
||||
*/
|
||||
Long sRemove(String key, Object... values);
|
||||
|
||||
/**
|
||||
* 获取List结构中的属性
|
||||
*
|
||||
* @param key key
|
||||
* @param start 开始索引
|
||||
* @param end 结束索引
|
||||
* @return List<Object>
|
||||
*/
|
||||
List<Object> lRange(String key, long start, long end);
|
||||
|
||||
/**
|
||||
* 获取List结构的长度
|
||||
*
|
||||
* @param key key
|
||||
* @return list.size
|
||||
*/
|
||||
Long lSize(String key);
|
||||
|
||||
/**
|
||||
* 根据索引获取List中的属性
|
||||
*
|
||||
* @param key key
|
||||
* @param index 索引
|
||||
* @return Object
|
||||
*/
|
||||
Object lIndex(String key, long index);
|
||||
|
||||
/**
|
||||
* 向List结构中添加属性
|
||||
*
|
||||
* @param key key
|
||||
* @param value value
|
||||
* @return 执行命令后,列表的长度
|
||||
*/
|
||||
Long lPush(String key, Object value);
|
||||
|
||||
/**
|
||||
* 向List结构中添加属性
|
||||
*
|
||||
* @param key key
|
||||
* @param value value
|
||||
* @param time 存活时间 单位秒
|
||||
* @return 执行命令后,列表的长度
|
||||
*/
|
||||
Long lPush(String key, Object value, long time);
|
||||
|
||||
/**
|
||||
* 向List结构中批量添加属性
|
||||
*
|
||||
* @param key key
|
||||
* @param values values
|
||||
* @return 执行命令后,列表的长度
|
||||
*/
|
||||
Long lPushAll(String key, Object... values);
|
||||
|
||||
/**
|
||||
* 向List结构中批量添加属性
|
||||
*
|
||||
* @param key key
|
||||
* @param time 存活时间 单位秒
|
||||
* @param values values
|
||||
* @return 执行命令后,列表的长度
|
||||
*/
|
||||
Long lPushAll(String key, Long time, Object... values);
|
||||
|
||||
/**
|
||||
* 从List结构中移除属性
|
||||
*
|
||||
* @param key key
|
||||
* @param count 数量
|
||||
* count > 0 : 从表头开始向表尾搜索,移除与 VALUE 相等的元素,数量为 COUNT 。
|
||||
* count < 0 : 从表尾开始向表头搜索,移除与 VALUE 相等的元素,数量为 COUNT 的绝对值。
|
||||
* count = 0 : 移除表中所有与 VALUE 相等的值。
|
||||
* @param value value
|
||||
* @return 被移除元素的数量
|
||||
*/
|
||||
Long lRemove(String key, long count, Object value);
|
||||
|
||||
|
||||
/**
|
||||
* 模糊查询所有key
|
||||
*
|
||||
* @param key key
|
||||
* @return keys
|
||||
*/
|
||||
Collection<String> getKeys(String key);
|
||||
|
||||
/**
|
||||
* get object
|
||||
*
|
||||
* @param key key
|
||||
* @param clazz clazz
|
||||
* @param <T> T
|
||||
* @return clazz
|
||||
*/
|
||||
<T> T getObject(String key, Class<T> clazz);
|
||||
|
||||
|
||||
/**
|
||||
* get list
|
||||
*
|
||||
* @param key key
|
||||
* @param clazz clazz
|
||||
* @param <T> T
|
||||
* @return // List<clazz>
|
||||
*/
|
||||
<T> List<T> getObjectList(String key, Class<T> clazz);
|
||||
}
|
@ -0,0 +1,224 @@
|
||||
package com.qiaoba.common.redis.service.impl;
|
||||
|
||||
|
||||
import com.qiaoba.common.redis.service.RedisService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.redis.core.RedisTemplate;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
* 自定义Redis接口实现类
|
||||
*
|
||||
* @author ailanyin
|
||||
* @version 1.0
|
||||
* @since 2021/10/2 0003 下午 17:44
|
||||
*/
|
||||
@Service
|
||||
public class RedisServiceImpl implements RedisService {
|
||||
|
||||
@Autowired
|
||||
private RedisTemplate<String, Object> redisTemplate;
|
||||
|
||||
@Override
|
||||
public void set(String key, Object value, long time) {
|
||||
redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void set(String key, Object value) {
|
||||
redisTemplate.opsForValue().set(key, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object get(String key) {
|
||||
return redisTemplate.opsForValue().get(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean del(String key) {
|
||||
return redisTemplate.delete(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void del(Collection<String> collection) {
|
||||
redisTemplate.delete(collection);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean expire(String key, long time) {
|
||||
return redisTemplate.expire(key, time, TimeUnit.SECONDS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getExpire(String key) {
|
||||
return redisTemplate.getExpire(key, TimeUnit.SECONDS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean hasKey(String key) {
|
||||
return redisTemplate.hasKey(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long incr(String key, long delta) {
|
||||
return redisTemplate.opsForValue().increment(key, delta);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long decr(String key, long delta) {
|
||||
return redisTemplate.opsForValue().increment(key, -delta);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object hGet(String key, String hashKey) {
|
||||
return redisTemplate.opsForHash().get(key, hashKey);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean hSet(String key, String hashKey, Object value, long time) {
|
||||
redisTemplate.opsForHash().put(key, hashKey, value);
|
||||
return expire(key, time);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hSet(String key, String hashKey, Object value) {
|
||||
redisTemplate.opsForHash().put(key, hashKey, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<Object, Object> hGetAll(String key) {
|
||||
return redisTemplate.opsForHash().entries(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean hSetAll(String key, Map<String, Object> map, long time) {
|
||||
redisTemplate.opsForHash().putAll(key, map);
|
||||
return expire(key, time);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hSetAll(String key, Map<String, ?> map) {
|
||||
redisTemplate.opsForHash().putAll(key, map);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hDel(String key, Object... hashKey) {
|
||||
redisTemplate.opsForHash().delete(key, hashKey);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean hHasKey(String key, String hashKey) {
|
||||
return redisTemplate.opsForHash().hasKey(key, hashKey);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long hIncr(String key, String hashKey, Long delta) {
|
||||
return redisTemplate.opsForHash().increment(key, hashKey, delta);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long hDecr(String key, String hashKey, Long delta) {
|
||||
return redisTemplate.opsForHash().increment(key, hashKey, -delta);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<Object> sMembers(String key) {
|
||||
return redisTemplate.opsForSet().members(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long sAdd(String key, Object... values) {
|
||||
return redisTemplate.opsForSet().add(key, values);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long sAdd(String key, long time, Object... values) {
|
||||
Long count = redisTemplate.opsForSet().add(key, values);
|
||||
expire(key, time);
|
||||
return count;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean sIsMember(String key, Object value) {
|
||||
return redisTemplate.opsForSet().isMember(key, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long sSize(String key) {
|
||||
return redisTemplate.opsForSet().size(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long sRemove(String key, Object... values) {
|
||||
return redisTemplate.opsForSet().remove(key, values);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Object> lRange(String key, long start, long end) {
|
||||
return redisTemplate.opsForList().range(key, start, end);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long lSize(String key) {
|
||||
return redisTemplate.opsForList().size(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object lIndex(String key, long index) {
|
||||
return redisTemplate.opsForList().index(key, index);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long lPush(String key, Object value) {
|
||||
return redisTemplate.opsForList().rightPush(key, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long lPush(String key, Object value, long time) {
|
||||
Long index = redisTemplate.opsForList().rightPush(key, value);
|
||||
expire(key, time);
|
||||
return index;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long lPushAll(String key, Object... values) {
|
||||
return redisTemplate.opsForList().rightPushAll(key, values);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long lPushAll(String key, Long time, Object... values) {
|
||||
Long count = redisTemplate.opsForList().rightPushAll(key, values);
|
||||
expire(key, time);
|
||||
return count;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long lRemove(String key, long count, Object value) {
|
||||
return redisTemplate.opsForList().remove(key, count, value);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Collection<String> getKeys(String key) {
|
||||
return redisTemplate.keys(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public <T> T getObject(String key, Class<T> clazz) {
|
||||
return (T) get(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public <T> List<T> getObjectList(String key, Class<T> clazz) {
|
||||
return (List<T>) get(key);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||
com.qiaoba.common.redis.config.RedisConfig,\
|
||||
com.qiaoba.common.redis.service.impl.RedisServiceImpl
|
||||
|
||||
|
Reference in New Issue
Block a user