springboot整合redis的博客很多,但是很多都不是我想要的结果。因为我只需要整合完成后,可以操作redis就可以了,并不需要配合缓存相关的注解使用(如@cacheable)。看了很多博客后,我成功的整合了,并写了个redis操作工具类。特意在此记录一下,方便后续查阅。
(1)本文所采用的springboot的版本如下
<parent> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-parent</artifactid> <version>2.0.2.relea</version> <relativepath/> <!-- lookup parent from repository --> </parent>
(2)加入redis相关依赖
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-data-redis</artifactid> </dependency>
# redis数据库索引(默认为0) spring.redis.databa=0 # redis服务器地址 spring.redis.host=192.168.0.24 # redis服务器连接端口 spring.redis.port=6379 # redis服务器连接密码(默认为空) spring.redis.password= # 连接池最大连接数(使用负值表示没有限制) spring.redis.pool.max-active=200 # 连接池最大阻塞等待时间(使用负值表示没有限制) spring.redis.pool.max-wait=-1 # 连接池中的最大空闲连接 spring.redis.pool.max-idle=10# 连接池中的最小空闲连接 spring.redis.pool.min-idle=0 # 连接超时时间(毫秒) spring.redis.timeout=1000
(1)聊聊redistemplate的自动配置
其实现在就可以在代码中注入redistemplate,为啥可以直接注入呢?先看下源码吧。下图为 redisautoconfiguration类中的截图,为了防止图片失效,代码也贴上 。
代码:
@configuration@conditionalonclass(redisoperations.class)@enableconfigurationproperties(redisproperties.class)@import({ lettuceconnectionconfiguration.class, jedisconnectionconfiguration.class })public class redisautoconfiguration { @bean @conditionalonmissingbean(name = "redistemplate") public redistemplate<object, object> redistemplate( redisconnectionfactory redisconnectionfactory) throws unknownhostexception { redistemplate<object, object> template = new redistemplate<>(); template.tconnectionfactory(redisconnectionfactory); return template; } @bean @conditionalonmissingbean public stringredistemplate stringredistemplate( redisconnectionfactory redisconnectionfactory) throws unknownhostexception { stringredistemplate template = new stringredistemplate(); template.tconnectionfactory(redisconnectionfactory); return template; }}
通过源码可以看出,springboot自动帮我们在容器中生成了一个redistemplate和一个stringredistemplate。但是,这个redistemplate的泛型是<object,object>,写代码不方便,需要写好多类型转换的代码;我们需要一个泛型为<string,object>形式的redistemplate。并且,这个redistemplate没有设置数据存在redis时,key及value的序列化方式。
看到这个@conditionalonmissingbean注解后,就知道如果spring容器中有了redistemplate对象了,这个自动配置的redistemplate不会实例化。因此我们可以直接自己写个配置类,配置redistemplate。
(2)既然自动配置不好用,就重新配置一个redistemplate
代码如下:
package com.zxy.demo.redis;import org.springframework.context.annotation.bean;import org.springframework.context.annotation.configuration;import org.springframework.data.redis.connection.redisconnectionfactory;import org.springframework.data.redis.core.redistemplate;import org.springframework.data.redis.rializer.jackson2jsonredisrializer;import org.springframework.data.redis.rializer.stringredisrializer;import com.fasterxml.jackson.annotation.jsonautodetect;import com.fasterxml.jackson.annotation.propertyaccessor;import com.fasterxml.jackson.databind.objectmapper;/** * redis配置类 * @author zeng.xiao.yan * @date 2018年6月6日 * */@configurationpublic class redisconfig { @bean@suppresswarnings("all") public redistemplate<string, object> redistemplate(redisconnectionfactory factory) { redistemplate<string, object> template = new redistemplate<string, object>(); template.tconnectionfactory(factory);jackson2jsonredisrializer jackson2jsonredisrializer = new jackson2jsonredisrializer(object.class); objectmapper om = new objectmapper(); om.tvisibility(propertyaccessor.all, jsonautodetect.visibility.any); om.enabledefaulttyping(objectmapper.defaulttyping.non_final); jackson2jsonredisrializer.tobjectmapper(om); stringredisrializer stringredisrializer = new stringredisrializer(); // key采用string的序列化方式 template.tkeyrializer(stringredisrializer); // hash的key也采用string的序列化方式 template.thashkeyrializer(stringredisrializer); // value序列化方式采用jackson template.tvaluerializer(jackson2jsonredisrializer); // hash的value序列化方式采用jackson template.thashvaluerializer(jackson2jsonredisrializer); template.afterpropertiest(); return template; }}
直接用redistemplate操作redis,需要很多行代码,因此直接封装好一个redisutils,这样写代码更方便点。这个redisutils交给spring容器实例化,使用时直接注解注入。
工具类代码如下:
package com.zxy.demo.redis;import java.util.list;import java.util.map;import java.util.t;import java.util.concurrent.timeunit;import org.springframework.beans.factory.annotation.autowired;import org.springframework.data.redis.core.redistemplate;import org.springframework.stereotype.component;import org.springframewo南国灯城rk.util.collectionutils;/*** redis工具类* @author zeng.xiao.yan* @date 2018年6月7日*/@componentpublic final class redisutil {@autowiredprivate redistemplate<string, object> redistemplate;// =============================common============================/*** 指定缓存失效时间* @param key 键* @param time 时间(秒)* @return*/public boolean expire(string key, long time) {try {if (time > 0) {redistemplate.expire(key, time, timeunit.conds);}return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 根据key 获取过期时间* @param key 键 不能为null* @return 时间(秒) 返回0代表为永久有效*/public long getexpire(string key) {return redistemplate.getexpire(key, timeunit.conds);}/*** 判断key是否存在* @param key 键* @return true 存在 fal不存在*/public boolean haskey(string key) {try {return redistemplate.haskey(key);} catch (exception e) {e.printstacktrace();return fal;}}/*** 删除缓存* @param key 可以传一个值 或多个*/@suppresswarnings("unchecked")public void del(string... key) {if (key != null && key.length > 0) {if (key.length == 1) {redistemplate.delete(key[0]);} el {redistemplate.delete(collectionutils.arraytolist(key));}}}// ============================string=============================/*** 普通缓存获取* @param key 键* @return 值*/public object get(string key) {return key == null ? null : redistemplate.opsforvalue().get(key);}/*** 普通缓存放入* @param key 键* @param value 值* @return true成功 fal失败*/public boolean t(string key, object value) {try {redistemplate.opsforvalue().t(key, value);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 普通缓存放入并设置时间* @param key 键* @param value 值* @param time 时间(秒) time要大于0 如果time小于等于0 将设置无限期* @return true成功 fal 失败*/public boolean t(string key, object value, long time) {try {if (time > 0) {redistemplate.opsforvalue().t(key, value, time, timeunit.conds);} el {t(key, va工程预算专业lue);}return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 递增* @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 要减少几(小于0)* @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 object hget(string key, string item) {return redistemplate.opsforhash().get(key, item);}/*** 获取hashkey对应的所有键值* @param key 键* @return 对应的多个键值*/public map<object, object> hmget(string key) {return redistemplate.opsforhash().entries(key);}/*** hasht* @param key 键* @param map 对应多个键值* @return true 成功 fal 失败*/public boolean hmt(string key, map<string, object> map) {try {redistemplate.opsforhash().putall(key, map);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** hasht 并设置时间* @param key 键* @param map 对应多个键值* @param time 时间(秒)* @return true成功 fal失败*/public boolean hmt(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 fal;}}/*** 向一张hash表中放入数据,如果不存在将创建* @param key 键* @param item 项* @param value 值* @return true 成功 fal失败*/public boolean ht(string key, string item, object value) {try {redistemplate.opsforhash().put(key, item, value);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 向一张hash表中放入数据,如果不存在将创建* @param key 键* @param item 项* @param value 值* @param time 时间(秒) 注意:如果已存在的hash表有时间,这里将会替换原有的时间* @return true 成功 fal失败*/public boolean ht(string key, string item, object value, long time) {try {redistemplate.opsforhash().put(key, item, value);if (time > 0) {expire(key, time);}return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 删除hash表中的值* @param key 键 不能为null* @param item 项 可以使多个 不能为null*/public void hdel(string key, object... item) {redistemplate.opsforhas广西的二本大学h().delete(key, item);}/*** 判断hash表中是否有该项的值* @param key 键 不能为null* @param item 项 不能为null* @return true 存在 fal不存在*/public boolean hhaskey(string key, string item) {return redistemplate.opsforhash().haskey(key, item);}/*** hash递增 如果不存在,就会创建一个 并把新增后的值返回* @param key 键* @param item 项* @param by 要增加几(大于0)* @return*/public double hincr(string key, string item, double by) {return redistemplate.opsforhash().increment(key, item, by);}/*** hash递减* @param key 键* @param item 项* @param by 要减少记(小于0)* @return*/public double hdecr(string key, string item, double by) {return redistemplate.opsforhash().increment(key, item, -by);}// ============================t=============================/*** 根据key获取t中的所有值* @param key 键* @return*/public t<object> sget(string key) {try {return redistemplate.opsfort().members(key);} catch (exception e) {e.printstacktrace();return null;}}/*** 根据value从一个t中查询,是否存在* @param key 键* @param value 值* @return true 存在 fal不存在*/public boolean sh描写牧童的诗askey(string key, object value) {try {return redistemplate.opsfort().ismember(key, value);} catch (exception e) {e.printstacktrace();return fal;}}/*** 将数据放入t缓存* @param key 键* @param values 值 可以是多个* @return 成功个数*/public long st(string key, object... values) {try {return redistemplate.opsfort().add(key, values);} catch (exception e) {e.printstacktrace();return 0;}}/*** 将t数据放入缓存* @param key 键* @param time 时间(秒)* @param values 值 可以是多个* @return 成功个数*/public long standtime(string key, long time, object... values) {try {long count = redistemplate.opsfort().add(key, values);if (time > 0)expire(key, time);return count;} catch (exception e) {e.printstacktrace();return 0;}}/*** 获取t缓存的长度* @param key 键* @return*/public long sgettsize(string key) {try {return redistemplate.opsfort().size(key);} catch (exception e) {e.printstacktrace();return 0;}}/*** 移除值为value的* @param key 键* @param values 值 可以是多个* @return 移除的个数*/public long tremove(string key, object... values) {try {long count = redistemplate.opsfort().remove(key, values);return count;} catch (exception e) {e.printstacktrace();return 0;}}// ===============================list=================================/*** 获取list缓存的内容* @param key 键* @param start 开始* @param end 结束 0 到 -1代表所有值* @return*/public list<object> 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 键* @return*/public long lgetlistsize(string key) {try {return redistemplate.opsforlist().size(key);} catch (exception e) {e.printstacktrace();return 0;}}/*** 通过索引 获取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 value 值* @param time 时间(秒)* @return*/public boolean lt(string key, object value) {try {redistemplate.opsforlist().rightpush(key, value);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 将list放入缓存* @param key 键* @param value 值* @param time 时间(秒)* @return*/public boolean lt(string key, object value, long time) {try {redistemplate.opsforlist().rightpush(key, value);if (time > 0)expire(key, time);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 将list放入缓存* @param key 键* @param value 值* @param time 时间(秒)* @return*/public boolean lt(string key, list<object> value) {try {redistemplate.opsforlist().rightpushall(key, value);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 将list放入缓存* * @param key 键* @param value 值* @param time 时间(秒)* @return*/public boolean lt(string key, list<object> value, long time) {try {redistemplate.opsforlist().rightpushall(key, value);if (time > 0)expire(key, time);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 根据索引修改list中的某条数据* @param key 键* @param index 索引* @param value 值* @return*/public boolean lupdateindex(string key, long index, o答谢中书书原文bject value) {try {redistemplate.opsforlist().t(key, index, value);return true;} catch (exception e) {e.printstacktrace();return fal;}}/*** 移除n个值为value* @param key 键* @param count 移除多少个* @param value 值* @return 移除的个数*/public long lremove(string key, long count, object value) {try {long remove = redistemplate.opsforlist().remove(key, count, value);return remove;} catch (exception e) {e.printstacktrace();return 0;}}}
整合其实不麻烦,网上好多博文都有。注意设置下key和value的序列化方式,不然存到redis的中数据看起来像乱码一下。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。
本文发布于:2023-04-04 09:46:16,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/47760b154a98835d7bdde68fcec7d833.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:SpringBoot整合Redis及Redis工具类撰写实例.doc
本文 PDF 下载地址:SpringBoot整合Redis及Redis工具类撰写实例.pdf
留言与评论(共有 0 条评论) |