首页

通过分组RedisTemplate的redis工具类RedisUtil - 简化常用的代码方法

标签:redis     发布时间:2024-09-04   
package com.tools.common.util;@b@@b@import net.coobird.thumbnailator.Thumbnails;@b@import org.springframework.beans.factory.annotation.Autowired;@b@import org.springframework.data.redis.core.BoundListOperations;@b@import org.springframework.data.redis.core.RedisTemplate;@b@import org.springframework.stereotype.Component;@b@import org.springframework.util.CollectionUtils;@b@@b@import java.io.File;@b@import java.io.IOException;@b@import java.util.List;@b@import java.util.Map;@b@import java.util.Set;@b@import java.util.concurrent.TimeUnit;@b@@b@/**@b@ * redisTemplate封装@b@ * 爪哇笔记:https://blog.52itstyle.vip@b@ */@b@@Component@b@public class RedisUtil {@b@@b@    @Autowired@b@    private RedisTemplate<String, Object> redisTemplate;@b@@b@    public static String PREFIX = "cloud:bed:";@b@@b@    /**@b@     * 指定缓存失效时间@b@     * @param key 键@b@     * @param time 时间(秒)@b@     * @return@b@     */@b@    public boolean expire(String key,long time){@b@        try {@b@            if(time>0){@b@                redisTemplate.expire(PREFIX+key, time, TimeUnit.SECONDS);@b@            }@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 根据key 获取过期时间@b@     * @param key 键 不能为null@b@     * @return 时间(秒) 返回0代表为永久有效@b@     */@b@    public long getExpire(String key){@b@        return redisTemplate.getExpire(PREFIX+key,TimeUnit.SECONDS);@b@    }@b@@b@    /**@b@     * 判断key是否存在@b@     * @param key 键@b@     * @return true 存在 false不存在@b@     */@b@    public boolean hasKey(String key){@b@        try {@b@            return redisTemplate.hasKey(PREFIX+key);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 删除缓存@b@     * @param key 可以传一个值 或多个@b@     */@b@    @SuppressWarnings("unchecked")@b@    public void del(String ... key){@b@        if(key!=null&&key.length>0){@b@            if(key.length==1){@b@                redisTemplate.delete(PREFIX+key[0]);@b@            }else{@b@                redisTemplate.delete(CollectionUtils.arrayToList(PREFIX+key));@b@            }@b@        }@b@    }@b@@b@    /**@b@     * 普通缓存获取@b@     * @param key 键@b@     * @return 值@b@     */@b@    public Object get(String key){@b@        return PREFIX+key==null?null:redisTemplate.opsForValue().get(PREFIX+key);@b@    }@b@@b@    /**@b@     * 普通缓存放入@b@     * @param key 键@b@     * @param value 值@b@     * @return true成功 false失败@b@     */@b@    public boolean set(String key,Object value) {@b@        try {@b@            redisTemplate.opsForValue().set(PREFIX+key, value);@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 普通缓存放入并设置时间@b@     * @param key 键@b@     * @param value 值@b@     * @param time 时间(秒) time要大于0 如果time小于等于0 将设置无限期@b@     * @return true成功 false 失败@b@     */@b@    public boolean set(String key,Object value,long time){@b@        try {@b@            if(time>0){@b@                redisTemplate.opsForValue().set(PREFIX+key, value, time, TimeUnit.SECONDS);@b@            }else{@b@                set(PREFIX+key, value);@b@            }@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 递增@b@     * @param key 键@b@     * @param delta 要增加几(大于0)@b@     * @return@b@     */@b@    public long incr(String key, long delta){@b@        if(delta<0){@b@            throw new RuntimeException("递增因子必须大于0");@b@        }@b@        return redisTemplate.opsForValue().increment(PREFIX+key, delta);@b@    }@b@@b@    /**@b@     * 递减@b@     * @param key 键@b@     * @param delta 要减少几(小于0)@b@     * @return@b@     */@b@    public long decr(String key, long delta){@b@        if(delta<0){@b@            throw new RuntimeException("递减因子必须大于0");@b@        }@b@        return redisTemplate.opsForValue().increment(PREFIX+key, -delta);@b@    }@b@@b@    /**@b@     * HashGet@b@     * @param key 键 不能为null@b@     * @param item 项 不能为null@b@     * @return 值@b@     */@b@    public Object hget(String key,String item){@b@        return redisTemplate.opsForHash().get(PREFIX+key, item);@b@    }@b@@b@    /**@b@     * 获取hashKey对应的所有键值@b@     * @param key 键@b@     * @return 对应的多个键值@b@     */@b@    public Map<Object,Object> hmget(String key){@b@        return redisTemplate.opsForHash().entries(PREFIX+key);@b@    }@b@@b@    /**@b@     * HashSet@b@     * @param key 键@b@     * @param map 对应多个键值@b@     * @return true 成功 false 失败@b@     */@b@    public boolean hmset(String key, Map<String,Object> map){@b@        try {@b@            redisTemplate.opsForHash().putAll(PREFIX+key, map);@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * HashSet 并设置时间@b@     * @param key 键@b@     * @param map 对应多个键值@b@     * @param time 时间(秒)@b@     * @return true成功 false失败@b@     */@b@    public boolean hmset(String key, Map<String,Object> map, long time){@b@        try {@b@            redisTemplate.opsForHash().putAll(PREFIX+key, map);@b@            if(time>0){@b@                expire(PREFIX+key, time);@b@            }@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 向一张hash表中放入数据,如果不存在将创建@b@     * @param key 键@b@     * @param item 项@b@     * @param value 值@b@     * @return true 成功 false失败@b@     */@b@    public boolean hset(String key,String item,Object value) {@b@        try {@b@            redisTemplate.opsForHash().put(PREFIX+key, item, value);@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 向一张hash表中放入数据,如果不存在将创建@b@     * @param key 键@b@     * @param item 项@b@     * @param value 值@b@     * @param time 时间(秒)  注意:如果已存在的hash表有时间,这里将会替换原有的时间@b@     * @return true 成功 false失败@b@     */@b@    public boolean hset(String key,String item,Object value,long time) {@b@        try {@b@            redisTemplate.opsForHash().put(PREFIX+key, item, value);@b@            if(time>0){@b@                expire(key, time);@b@            }@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 删除hash表中的值@b@     * @param key 键 不能为null@b@     * @param item 项 可以使多个 不能为null@b@     */@b@    public void hdel(String key, Object... item){@b@        redisTemplate.opsForHash().delete(PREFIX+key,item);@b@    }@b@@b@    /**@b@     * 判断hash表中是否有该项的值@b@     * @param key 键 不能为null@b@     * @param item 项 不能为null@b@     * @return true 存在 false不存在@b@     */@b@    public boolean hHasKey(String key, String item){@b@        return redisTemplate.opsForHash().hasKey(PREFIX+key, item);@b@    }@b@@b@    /**@b@     * hash递增 如果不存在,就会创建一个 并把新增后的值返回@b@     * @param key 键@b@     * @param item 项@b@     * @param by 要增加几(大于0)@b@     * @return@b@     */@b@    public double hincr(String key, String item,double by){@b@        return redisTemplate.opsForHash().increment(PREFIX+key, item, by);@b@    }@b@@b@    /**@b@     * hash递减@b@     * @param key 键@b@     * @param item 项@b@     * @param by 要减少记(小于0)@b@     * @return@b@     */@b@    public double hdecr(String key, String item,double by){@b@        return redisTemplate.opsForHash().increment(PREFIX+key, item,-by);@b@    }@b@@b@    /**@b@     * 根据key获取Set中的所有值@b@     * @param key 键@b@     * @return@b@     */@b@    public Set<Object> sGet(String key){@b@        try {@b@            return redisTemplate.opsForSet().members(PREFIX+key);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return null;@b@        }@b@    }@b@@b@    /**@b@     * 根据value从一个set中查询,是否存在@b@     * @param key 键@b@     * @param value 值@b@     * @return true 存在 false不存在@b@     */@b@    public boolean sHasKey(String key,Object value){@b@        try {@b@            return redisTemplate.opsForSet().isMember(PREFIX+key, value);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 将数据放入set缓存@b@     * @param key 键@b@     * @param values 值 可以是多个@b@     * @return 成功个数@b@     */@b@    public long sSet(String key, Object...values) {@b@        try {@b@            return redisTemplate.opsForSet().add(PREFIX+key, values);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return 0;@b@        }@b@    }@b@@b@    /**@b@     * 将set数据放入缓存@b@     * @param key 键@b@     * @param time 时间(秒)@b@     * @param values 值 可以是多个@b@     * @return 成功个数@b@     */@b@    public long sSetAndTime(String key,long time,Object...values) {@b@        try {@b@            Long count = redisTemplate.opsForSet().add(PREFIX+key, values);@b@            if(time>0) {@b@                expire(key, time);@b@            }@b@            return count;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return 0;@b@        }@b@    }@b@@b@    /**@b@     * 获取set缓存的长度@b@     * @param key 键@b@     * @return@b@     */@b@    public long sGetSetSize(String key){@b@        try {@b@            return redisTemplate.opsForSet().size(PREFIX+key);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return 0;@b@        }@b@    }@b@@b@    /**@b@     * 移除值为value的@b@     * @param key 键@b@     * @param values 值 可以是多个@b@     * @return 移除的个数@b@     */@b@    public long setRemove(String key, Object ...values) {@b@        try {@b@            Long count = redisTemplate.opsForSet().remove(PREFIX+key, values);@b@            return count;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return 0;@b@        }@b@    }@b@    //===============================list=================================@b@@b@    /**@b@     * 获取list缓存的内容@b@     * @param key 键@b@     * @param start 开始@b@     * @param end 结束  0 到 -1代表所有值@b@     * @return@b@     */@b@    public List<Object> lGet(String key, long start, long end){@b@        try {@b@            return redisTemplate.opsForList().range(PREFIX+key, start, end);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return null;@b@        }@b@    }@b@@b@    /**@b@     * 获取list缓存的长度@b@     * @param key 键@b@     * @return@b@     */@b@    public long lGetListSize(String key){@b@        try {@b@            return redisTemplate.opsForList().size(PREFIX+key);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return 0;@b@        }@b@    }@b@@b@    /**@b@     * 通过索引 获取list中的值@b@     * @param key 键@b@     * @param index 索引  index>=0时, 0 表头,1 第二个元素,依次类推;index<0时,-1,表尾,-2倒数第二个元素,依次类推@b@     * @return@b@     */@b@    public Object lGetIndex(String key,long index){@b@        try {@b@            return redisTemplate.opsForList().index(PREFIX+key, index);@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return null;@b@        }@b@    }@b@@b@    /**@b@     * 将list放入缓存@b@     * @param key 键@b@     * @param value 值@b@     * @return@b@     */@b@    public boolean lSet(String key, Object value) {@b@        try {@b@            redisTemplate.opsForList().rightPush(PREFIX+key, value);@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 将list放入缓存@b@     * @param key 键@b@     * @param value 值@b@     * @param time 时间(秒)@b@     * @return@b@     */@b@    public boolean lSet(String key, Object value, long time) {@b@        try {@b@            redisTemplate.opsForList().rightPush(PREFIX+key, value);@b@            if (time > 0) {@b@                expire(key, time);@b@            }@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 将list放入缓存@b@     * @param key 键@b@     * @param value 值@b@     * @return@b@     */@b@    public boolean lSet(String key, List<Object> value) {@b@        try {@b@            redisTemplate.opsForList().rightPushAll(PREFIX+key, value);@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 将list放入缓存@b@     * @param key 键@b@     * @param value 值@b@     * @param time 时间(秒)@b@     * @return@b@     */@b@    public boolean lSet(String key, List<Object> value, long time) {@b@        try {@b@            redisTemplate.opsForList().rightPushAll(PREFIX+key, value);@b@            if (time > 0) {@b@                expire(key, time);@b@            }@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 根据索引修改list中的某条数据@b@     * @param key 键@b@     * @param index 索引@b@     * @param value 值@b@     * @return@b@     */@b@    public boolean lUpdateIndex(String key, long index,Object value) {@b@        try {@b@            redisTemplate.opsForList().set(PREFIX+key, index, value);@b@            return true;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return false;@b@        }@b@    }@b@@b@    /**@b@     * 移除N个值为value@b@     * @param key 键@b@     * @param count 移除多少个@b@     * @param value 值@b@     * @return 移除的个数@b@     */@b@    public long lRemove(String key,long count,Object value) {@b@        try {@b@            Long remove = redisTemplate.opsForList().remove(PREFIX+key, count, value);@b@            return remove;@b@        } catch (Exception e) {@b@            e.printStackTrace();@b@            return 0;@b@        }@b@    }@b@@b@    /**@b@     * 模糊查询获取key值@b@     * @param pattern@b@     * @return@b@     */@b@    public Set keys(String pattern){@b@        return redisTemplate.keys(pattern);@b@    }@b@@b@    /**@b@     * 使用Redis的消息队列@b@     * @param channel@b@     * @param message 消息内容@b@     */@b@    public void convertAndSend(String channel, Object message){@b@        redisTemplate.convertAndSend(channel,message);@b@    }@b@@b@    /**@b@     *将数据添加到Redis的list中(从右边添加)@b@     * @param listKey@b@     * @param time 有效期@b@     * @param values 待添加的数据@b@     */@b@    public void addToListRight(String listKey, long time, TimeUnit timeUnit, Object... values) {@b@        //绑定操作@b@        BoundListOperations<String, Object> boundValueOperations = redisTemplate.boundListOps(listKey);@b@        //插入数据@b@        boundValueOperations.rightPushAll(values);@b@        //设置过期时间@b@        boundValueOperations.expire(time,timeUnit);@b@    }@b@    /**@b@     * 根据起始结束序号遍历Redis中的list@b@     * @param listKey@b@     * @param start  起始序号@b@     * @param end  结束序号@b@     * @return@b@     */@b@    public List<Object> rangeList(String listKey, long start, long end) {@b@        //绑定操作@b@        BoundListOperations<String, Object> boundValueOperations = redisTemplate.boundListOps(listKey);@b@        //查询数据@b@        return boundValueOperations.range(start, end);@b@    }@b@    /**@b@     * 弹出右边的值 --- 并且移除这个值@b@     * @param listKey@b@     */@b@    public Object rifhtPop(String listKey){@b@        //绑定操作@b@        BoundListOperations<String, Object> boundValueOperations = redisTemplate.boundListOps(listKey);@b@        return boundValueOperations.rightPop();@b@    }@b@@b@    public static void main(String[] args) throws IOException {@b@        String fromPic = "D:\\1239d1b727874bf09f3127d2ed498f0e.png";@b@        File file = new File(fromPic);@b@        File toPic = new File("D:\\1239d1b727874bf09f3127d2ed498f0e_1.png");@b@        Thumbnails.of(file).scale(0.5f).outputQuality(1f).toFile(toPic);@b@    }@b@}


<<热门下载>>