redis工具类代码
@Component
public final class RedisUtil<V> {
@Autowired
private RedisTemplate<String, String> redisTemplate;
// =============================common============================
/**
* 指定缓存失效时间
*
* @param key 键
* @param time 时间(秒)
* @return 是否保存成功
*/
public boolean expire(String key, long time) {
try {
if (time > 0) {
redisTemplate.expire(key, time, TimeUnit.SECONDS);
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 根据key 获取过期时间
*
* @param key 键 不能为null
* @return 时间(秒) 返回0代表为永久有效
*/
public long getExpire(String key) {
return redisTemplate.getExpire(key, TimeUnit.SECONDS);
}
/**
* 判断key是否存在
*
* @param key 键
* @return true 存在 false不存在
*/
public boolean hasKey(String key) {
try {
return redisTemplate.hasKey(key);
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
public Set<String> keys(String pattern) {
try {
return redisTemplate.keys(pattern);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* 删除缓存
*
* @param key 可以传一个值 或多个
*/
@SuppressWarnings("unchecked")
public void del(String... key) {
if (key != null && key.length > 0) {
if (key.length == 1) {
redisTemplate.delete(key[0]);
} else {
redisTemplate.delete(CollectionUtils.arrayToList(key));
}
}
}
// ============================String=============================
/**
* 普通缓存获取
*
* @param key 键
* @return 值
*/
public String get(String key) {
return key == null ? null : (String) redisTemplate.opsForValue().get(key);
}
/**
* 普通缓存获取
*
* @param key 键
* @return 值
*/
public Object getObj(String key) {
return key == null ? null : (String) redisTemplate.opsForValue().get(key);
}
/**
* 普通缓存放入
*
* @param key 键
* @param value 值
* @return true成功 false失败
*/
public boolean set(String key, String value) {
try {
redisTemplate.opsForValue().set(key, value);
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 普通缓存放入
*
* @param key 键
* @param value 值
* @return true成功 false失败
*/
public boolean setObj(String key, Object value) {
try {
redisTemplate.opsForValue().set(key, FastJsonWrapper.toJson(value));
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 普通缓存放入并设置时间
*
* @param key 键
* @param value 值
* @param time 时间(秒) time要大于0 如果time小于等于0 将设置无限期
* @return true成功 false 失败
*/
public boolean set(String key, String value, long time) {
try {
if (time > 0) {
redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
} else {
set(key, value);
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 普通缓存放入并设置时间
*
* @param key 键
* @param value 值
* @param time 时间(秒) time要大于0 如果time小于等于0 将设置无限期
* @return true成功 false 失败
*/
public boolean setObj(String key, Object value, long time) {
try {
if (time > 0) {
redisTemplate.opsForValue().set(key, FastJsonWrapper.toJson(value), time, TimeUnit.SECONDS);
} else {
setObj(key, value);
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 递增
*
* @param key 键
* @param delta 要增加几(大于0)
* @return 值
*/
public long incr(String key, long delta) {
if (delta < 0) {
throw new RuntimeException("递增因子必须大于0");
}
return redisTemplate.opsForValue().increment(key, delta);
}
/**
* 递减
*
* @param key 键
* @param delta 要减少几
* @return 值
*/
public long decr(String key, long delta) {
if (delta < 0) {
throw new RuntimeException("递减因子必须大于0");
}
return redisTemplate.opsForValue().increment(key, -delta);
}
// ================================Map=================================
/**
* HashGet
*
* @param key 键 不能为null
* @param item 项 不能为null
* @return 值
*/
public String hget(String key, String item) {
return key == null ? null : (String) redisTemplate.opsForHash().get(key, item);
}
/**
* 获取hashKey对应的所有键值
*
* @param key 键
* @return 对应的多个键值
*/
public Map<Object, Object> hmget(String key) {
return redisTemplate.opsForHash().entries(key);
}
/**
* HashSet
*
* @param key 键
* @param map 对应多个键值
* @return true 成功 false 失败
*/
public boolean hmset(String key, Map<String, Object> map) {
try {
redisTemplate.opsForHash().putAll(key, map);
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* HashSet 并设置时间
*
* @param key 键
* @param map 对应多个键值
* @param time 时间(秒)
* @return true成功 false失败
*/
public boolean hmset(String key, Map<String, Object> map, long time) {
try {
redisTemplate.opsForHash().putAll(key, map);
if (time > 0) {
expire(key, time);
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 向一张hash表中放入数据,如果不存在将创建
*
* @param key 键
* @param item 项
* @param value 值
* @return true 成功 false失败
*/
public boolean hset(String key, String item, String value) {
try {
redisTemplate.opsForHash().put(key, item, value);
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 向一张hash表中放入数据,如果不存在将创建
*
* @param key 键
* @param item 项
* @param value 值
* @param time 时间(秒) 注意:如果已存在的hash表有时间,这里将会替换原有的时间
* @return true 成功 false失败
*/
public boolean hset(String key, String item, String value, long time) {
try {
redisTemplate.opsForHash().put(key, item, value);
if (time > 0) {
expire(key, time);
}
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 删除hash表中的值
*
* @param key 键 不能为null
* @param item 项 可以使多个 不能为null
*/
public void hdel(String key, String... item) {
redisTemplate.opsForHash().delete(key, item);
}
/**
* 判断hash表中是否有该项的值
*
* @param key 键 不能为null
* @param item 项 不能为null
* @return true 存在 false不存在
*/
public boolean hHasKey(String key, String item) {
return redisTemplate.opsForHash().hasKey(key, item);
}
/**
* hash递增 如果不存在,就会创建一个 并把新增后的值返回
*
* @param key 键
* @param item 项
* @param by 要增加几(大于0)
* @return 值
*/
public long hincr(String key, String item, long by) {
if (by < 0) {
throw new RuntimeException("递增因子必须大于0");
}
return redisTemplate.opsForHash().increment(key, item, by);
}
/**
* hash递减
*
* @param key 键
* @param item 项
* @param by 要减少记(小于0)
* @return 值
*/
public long hdecr(String key, String item, long by) {
if (by < 0) {
throw new RuntimeException("递减因子必须大于0");
}
return redisTemplate.opsForHash().increment(key, item, -by);
}
// ============================set=============================
/**
* 根据key获取Set中的所有值
*
* @param key 键
* @return 值
*/
public Set<String> sGet(String key) {
try {
return redisTemplate.opsForSet().members(key);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* 将数据放入set缓存
*
* @param key 键
* @param values 值 可以是多个(Object类型必须一致)
* @return 成功个数
*/
public long sSet(String key, String... values) {
try {
return redisTemplate.opsForSet().add(key, values);
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
// // ===============================list=================================
//
/*
* 获取list缓存的内容
*
* @param key 键
* @param start 开始
* @param end 结束 0 到 -1代表所有值
* @return 返回值是List<String></>
*/
public List<String> lGet(String key, long start, long end) {
try {
return redisTemplate.opsForList().range(key, start, end);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/*
* 通过索引 获取list中的值
*
* @param key 键
* @param index 索引 index>=0时, 0 表头,1 第二个元素,依次类推;index<0时,-1,表尾,-2倒数第二个元素,依次类推
* @return
*/
public Object lGetIndex(String key, long index) {
try {
return redisTemplate.opsForList().index(key, index);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
//
/**
* 将list放入缓存
*
* @param key 键
* @param values 值
* @return
*/
public int lSet(String key, List<String> values) {
try {
if(CollectionUtils.isEmpty(values)){
return 0;
}
for(int i = 0;i<values.size();i++){
redisTemplate.opsForList().rightPush(key, values.get(i));
}
return values.size();
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
/**
* 将list放入缓存
*
* @param key 键
* @param value 值
* @return
*/
public int lSet(String key, String value) {
try {
redisTemplate.opsForList().rightPush(key, value);
return 1;
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
/**
* 将list放入缓存
*
* @param key 键
* @param values 值
* @return
*/
public int llSetAll(String key, List<V> values) {
try {
if(CollectionUtils.isEmpty(values)){
return 0;
}
for(int i = 0;i<values.size();i++){
redisTemplate.opsForList().rightPushAll(key,FastJsonWrapper.toJson( values.get(i)) );
}
return values.size();
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
//
/**
* 向队列右侧放入缓存
*
* @param key 键
* @param value 值
* @return
*/
public boolean rghitSet(String key, String value) {
try {
redisTemplate.opsForList().rightPush(key, value);
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
/**
* 将学单词的信息list放入缓存
*
* @param key 键
* @param values 值
* @return
*/
public int lSetAll(String key, List<String> values) {
try {
if (CollectionUtils.isEmpty(values)) {
return 0;
}
for (int i = 0; i < values.size(); i++) {
redisTemplate.opsForList().rightPushAll(key, JSON.toJSONString(values.get(i)));
expire(key, 24 * 3600);
}
return values.size();
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
/**
* 将学单词的信息list放入缓存
*
* @param key 键
* @param value 值
* @return
*/
public int lSet(String key, String value, long time) {
try {
redisTemplate.opsForList().rightPush(key,value);
expire(key,time);
return 1;
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
/**
* 获取list缓存的长度
* @param key 键
* @return
*/
public long lGetListSize(String key){
try {
return redisTemplate.opsForList().size(key);
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
public void lTrim(String key, long start, long end){
try {
redisTemplate.opsForList().trim(key,start,end);
} catch (Exception e) {
e.printStackTrace();
}
}
/*
* 从list中获取第一个数据
*
* @param key 键
* @param count 移除多少个
* @param value 值
* @return 移除的个数
*/
public Object leftPop(String key) {
try {
return redisTemplate.opsForList().leftPop(key);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/*
* 从list中获取第一个数据
*
* @param key 键
* @param count 移除多少个
* @param value 值
* @return 移除的个数
*/
public Object rightPop(String key) {
try {
return redisTemplate.opsForList().rightPop(key);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
redis工具类中引用的相关类
pom文件中引入相关jar包
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.58</version>
</dependency>
public class FastJsonWrapper {
static {
System.setProperty(FASTJSON_COMPATIBLEWITHJAVABEAN, "true");
System.setProperty(FASTJSON_COMPATIBLEWITHFIELDNAME, "true");
}
public static boolean isBadJson(String jsonStr) {
return !isGoodJson(jsonStr);
}
private static SerializeFilter serializeFilter = new ContextValueFilter() {
@Override
public Object process(BeanContext context, Object object, String name, Object value) {
if (value == null) {
if (context == null && (object.getClass() == HashMap.class || object.getClass() == HashedMap.class)) {
return "";
}
if (context.getFieldClass() == String.class) {
return "";
} else if (context.getFieldClass() == List.class) {
return Lists.newArrayList();
} else if (context.getFieldClass() == Map.class) {
return Maps.newHashMap();
} else if (context.getFieldClass() == Set.class) {
return Sets.newHashSet();
} else if (context.getFieldClass() == boolean.class) {
return false;
} else if (context.getFieldClass() == byte.class) {
return 0;
} else if (context.getFieldClass() == char.class) {
return '\u0000';
} else if (context.getFieldClass() == short.class) {
return 0;
} else if (context.getFieldClass() == int.class) {
return 0;
} else if (context.getFieldClass() == float.class) {
return 0f;
} else if (context.getFieldClass() == long.class) {
return 0L;
} else if (context.getFieldClass() == double.class) {
return 0d;
} else if (context.getFieldClass() == Byte[].class) {
return new Byte[0];
} else if (context.getFieldClass() == Character[].class) {
return new Character[0];
} else if (context.getFieldClass() == Short[].class) {
return new Short[0];
} else if (context.getFieldClass() == Integer[].class) {
return new Integer[0];
} else if (context.getFieldClass() == Long[].class) {
return new Long[0];
} else if (context.getFieldClass() == Boolean[].class) {
return new Boolean[0];
} else if (context.getFieldClass() == Float[].class) {
return new Float[0];
} else if (context.getFieldClass() == Double[].class) {
return new Double[0];
} else if (context.getFieldClass() == String[].class) {
return new String[0];
} else if (context.getFieldClass() == BigInteger[].class) {
return new BigInteger[0];
} else if (context.getFieldClass() == BigDecimal[].class) {
return new BigDecimal[0];
} else {
return null;
}
}
return value;
}
};
public static boolean isGoodJson(String jsonStr) {
if (StringUtils.isEmpty(jsonStr)) {
return false;
}
try {
new JsonParser().parse(jsonStr);
} catch (JsonParseException e) {
return false;
}
return true;
}
public static String toJson(Object obj) {
if (obj == null) {
return null;
}
return toJSONString(obj, serializeFilter);
}
public static String toPrettyJson(Object obj) {
if (obj == null) {
return null;
}
return toJSONString(obj, serializeFilter, SerializerFeature.PrettyFormat);
}
public static List<Object> toList(String jsonStr) {
if (StringUtils.isEmpty(jsonStr)) {
return null;
}
JSONArray jsonArr = JSON.parseArray(jsonStr);
List<Object> list = new ArrayList<Object>();
for (Iterator iterator = jsonArr.iterator(); iterator.hasNext(); ) {
list.add(toMap(iterator.next().toString()));
}
return list;
}
public static List<Map<String, Object>> toMapList(String jsonStr) {
if (StringUtils.isEmpty(jsonStr)) {
return null;
}
JSONArray jsonArr = JSON.parseArray(jsonStr);
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
Iterator<Object> it = jsonArr.iterator();
while (it.hasNext()) {
list.add(toMap(it.next().toString()));
}
return list;
}
public static Map<String, Object> toMap(String jsonStr) {
if (StringUtils.isEmpty(jsonStr)) {
return null;
}
return (Map<String, Object>) JSON.parse(jsonStr);
}
public static void main(String[] args) {
Map<String, Object> map = new HashedMap();
map.put("NAME", null);
map.put("ADDRESS", "");
map.put("test", null);
map.put("phone", "123");
map.put("myAge", 123);
map.put("MyWeight", 23.45F);
String json = FastJsonWrapper.toPrettyJson(map);
System.out.println(json);
}
}