|
|
|
@ -1,11 +1,11 @@
|
|
|
|
|
package com.glxp.udidl.admin.util;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.db.nosql.redis.RedisDS;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
import redis.clients.jedis.Jedis;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -13,32 +13,96 @@ import java.util.Set;
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
|
|
|
|
@Component
|
|
|
|
|
public class RedisUtil {
|
|
|
|
|
public class RedisUtil<T> {
|
|
|
|
|
|
|
|
|
|
private final Jedis jedis = RedisDS.create().getJedis();
|
|
|
|
|
@Resource
|
|
|
|
|
private RedisTemplate<String, Object> redisTemplate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取字符串类型key值
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public String get(String key) {
|
|
|
|
|
return jedis.get(key);
|
|
|
|
|
return String.valueOf(redisTemplate.opsForValue().get(key));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String setEx(String key, String value, long expireTime) {
|
|
|
|
|
return jedis.setex(key, expireTime, value);
|
|
|
|
|
/**
|
|
|
|
|
* 获取Object类型key值
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public Object getObj(String key) {
|
|
|
|
|
return redisTemplate.opsForValue().get(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设置过期key
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @param value
|
|
|
|
|
* @param expireTime
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public boolean setEx(String key, String value, long expireTime) {
|
|
|
|
|
boolean result = false;
|
|
|
|
|
try {
|
|
|
|
|
redisTemplate.opsForValue().set(key, value, expireTime);
|
|
|
|
|
result = true;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("RedisUtil setEx 发生异常,参数列表:key {} value {}", key, value, e);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 判断key是否存在
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public boolean exist(String key) {
|
|
|
|
|
return jedis.exists(key);
|
|
|
|
|
return redisTemplate.hasKey(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取过期时间
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public long getExpireTime(String key) {
|
|
|
|
|
return jedis.ttl(key);
|
|
|
|
|
return redisTemplate.getExpire(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String set(String key, String value) {
|
|
|
|
|
return jedis.set(key, value);
|
|
|
|
|
/**
|
|
|
|
|
* 设置key
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @param value
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public boolean set(String key, T value) {
|
|
|
|
|
boolean result = false;
|
|
|
|
|
try {
|
|
|
|
|
redisTemplate.opsForValue().set(key, value);
|
|
|
|
|
result = true;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("RedisUtil set 发生异常,参数列表:key {} value {}", key, value, e);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取锁
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public boolean getLock(String key) {
|
|
|
|
|
if (jedis.exists(key)) {
|
|
|
|
|
if (exist(key)) {
|
|
|
|
|
long expireTime = getExpireTime(key);
|
|
|
|
|
try {
|
|
|
|
|
Thread.sleep(expireTime * 1000);
|
|
|
|
@ -49,13 +113,43 @@ public class RedisUtil {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取模糊匹配key集合
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public Set<String> keys(String key) {
|
|
|
|
|
return redisTemplate.keys(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除key
|
|
|
|
|
*
|
|
|
|
|
* @param key
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public boolean del(String key) {
|
|
|
|
|
boolean result = false;
|
|
|
|
|
try {
|
|
|
|
|
redisTemplate.delete(key);
|
|
|
|
|
result = true;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("RedisUtil del 删除key值,key {} ", key, e);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//模糊匹配删除
|
|
|
|
|
/**
|
|
|
|
|
* 模糊匹配删除
|
|
|
|
|
*
|
|
|
|
|
* @param prex
|
|
|
|
|
*/
|
|
|
|
|
public void deleteByPrex(String prex) {
|
|
|
|
|
Set<String> keys = jedis.keys(prex);
|
|
|
|
|
Set<String> keys = keys(prex);
|
|
|
|
|
if (CollUtil.isNotEmpty(keys)) {
|
|
|
|
|
for (String str : keys) {
|
|
|
|
|
jedis.del(str);
|
|
|
|
|
for (String key : keys) {
|
|
|
|
|
del(key);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|