springboot 集成redis_一文详解Spring Boot 集成 Redis

redis设置:

  • 修改redis服务器的配置文件
vim /usr/local/redis/bin/redis.confbind 0.0.0.0 protected-mode no
  • 重新启动redis
systemctl restart redis.service   #重新启动服务

注意:服务器的话需要设置安全组开放端口

1.导入依赖

 org.springframework.boot    spring-boot-starter-data-redis

2.全局配置文件中配置redis信息

# 应用名称spring:  application:    name: springboot-redis01  redis:    host: 47.93.190.68    port: 6379    database: 0    jedis:      #redis连接池信息      pool:        max-active: 8        min-idle: 0        max-idle: 8        max-wait: -1server:  servlet:    context-path: /redis01

通过以上配置后springboot就为我们提供了RedisTemplate和StringRedisTemplate(对key,value形式的都是string操作)

相关操作

StringRedisTemplate

对string类型的操作方式:

00af86acb1b11775ef71a55396e70dba.png
//操作stringstringRedisTemplate.opsForValue().set("string01","string");System.out.println(stringRedisTemplate.opsForValue().get("string01"));//操作hash类型stringRedisTemplate.opsForHash().put("hash-user","username","name");stringRedisTemplate.opsForHash().put("hash-user","userage","age");//操作liststringRedisTemplate.opsForList().rightPushAll("list","l1","l2");//操作setstringRedisTemplate.opsForSet().add("set01", "daaa");//操作zsetstringRedisTemplate.opsForZSet().add("zset01", "zset", 1);
  • 绑定一个键(k)进行操作:通常是对一个key进行多次的操作时使用。
f7f67c3724e9251295d703410f3f9c68.png
//没有key就会添加keyBoundValueOperations boundValueOps = stringRedisTemplate.boundValueOps("name");//追加的方式boundValueOps.append("hahaha");boundValueOps.append("hahaha");System.out.println(boundValueOps.get());//重新赋值boundValueOps.set("hanwei hello");System.out.println(boundValueOps.get());

注意: 一旦绑定key之后后续根据返回对象的操作都是基于这个key的操作

redisTemplate

  • 一般操作是将对象存储在redis中。
@Test    public void testRedisTemplate(){        //通过这种方式是获取不到stringRedisTemplate方式设置的值的        System.out.println(redisTemplate.opsForValue().get("name"));//null        //设置key的序列化方式为string        redisTemplate.setKeySerializer(new StringRedisSerializer());        //以下是设置value的序列化        Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer<>(Object.class);        //jackson        ObjectMapper objectMapper = new ObjectMapper();        //转换json格式的时候将原始类型保留,这样在反序列化的时候就能知道对应的类型信息        objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);        //修改存储在redis中的日期格式        objectMapper.setDateFormat(new SimpleDateFormat("yyyy-MM-dd"));        jackson2JsonRedisSerializer.setObjectMapper(objectMapper);        redisTemplate.setValueSerializer(jackson2JsonRedisSerializer);        User user = new User();        user.setId(22).setName("hanhan").setBir(new Date());        redisTemplate.opsForValue().set("user",user);        System.out.println(redisTemplate.opsForValue().get("user").toString());        //hash类型的是(key,(key,val)),所以需要单独设置序列化方式        redisTemplate.setHashKeySerializer(new StringRedisSerializer());        redisTemplate.setHashValueSerializer(jackson2JsonRedisSerializer);        redisTemplate.opsForHash().put("user1","user",user);        System.out.println(redisTemplate.opsForHash().get("user1", "user"));    }

注意redistemplate默认使用的是jdk的序列化,存储到redis中会是下面的情况:,所以我们将key的序列化改为string类型的,将value改为json序列化。

mybatis中使用redis

mybatis自身缓存存在问题,本地缓存local cache

1.本地缓存存储在当前运行的jvm内存中,如果缓存数据过多会占用一定jvm内存,导致应用运行缓存。

​ 2.不能在分布式系统中做到缓存共享。

重写mybatis cache 使用redis作分布式缓存

如果使用mybatis的二级缓存只需要在mapper文件中添加,二级缓存的作用范围是每个maper。

自定义redis缓存作为mybatis的缓存

  • 导入依赖
org.springframework.boot            spring-boot-starter        org.springframework.boot            spring-boot-starter-data-redis        org.projectlombok            lombok        org.springframework.boot            spring-boot-starter-test            testjunit            junit            testcom.fasterxml.jackson.core            jackson-databind        org.mybatis.spring.boot            mybatis-spring-boot-starter            2.1.1com.alibaba            druid            1.1.21mysql            mysql-connector-java        

注意:mybatis的xml文件如果再java文件下的话,一定要加resources将xml发布

  • 自定义RedisCache类
package com.han.cache;import com.han.util.ApplicationContextUtils;import org.apache.ibatis.cache.Cache;import org.springframework.context.ApplicationContext;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.serializer.StringRedisSerializer;import java.util.concurrent.locks.ReadWriteLock;import java.util.concurrent.locks.ReentrantReadWriteLock;/** * @author M.han * @title: RedisCache * @projectName springboot-redis * @description: TODO * @date 2020/12/1520:18 */public class RedisCache implements Cache {    private String id;    public RedisCache(String id) {        System.out.println("当前加入缓存的id==》" + id);        this.id = id;    }    @Override    public String getId() {        return id;    }    /***     * 放入缓存     * @param key     * @param val     */    @Override    public void putObject(Object key, Object val) {        System.out.println("KEY:" + key);        System.out.println("val:" + val);        //获取对象        RedisTemplate redisTemplate = (RedisTemplate) ApplicationContextUtils.getBean("redisTemplate");        redisTemplate.setKeySerializer(new StringRedisSerializer());        //存储在Redis中,注意上面对key使用了string序列化,所以传入的key是string类型的        redisTemplate.opsForValue().set(key.toString(), val);    }    /***     * 从缓存中获取     * @param key     * @return     */    @Override    public Object getObject(Object key) {        System.out.println("从缓存中读取了=》" + key);        //获取对象        RedisTemplate redisTemplate = (RedisTemplate) ApplicationContextUtils.getBean("redisTemplate");        redisTemplate.setKeySerializer(new StringRedisSerializer());        return redisTemplate.opsForValue().get(key.toString());    }    /***     *  删除缓存中的数据     */    @Override    public Object removeObject(Object o) {        return null;    }    /***     * 清空缓存     */    @Override    public void clear() {    }    /***     * 缓存的命中概率     * @return     */    @Override    public int getSize() {        return 0;    }    /***     * 读写锁,可以为空,写写互斥,读写互斥,读读共享     * @return     */    @Override    public ReadWriteLock getReadWriteLock() {        return new ReentrantReadWriteLock();    }}
  • 因为缓存类是mybatis使用而没有交给spring容器托管(因为在mybatis执行这个的时候要传入id),但是在RedisCache类中需要注入RedisTemplate,所以自定义一个获取spring工厂中的bean的工具类。
package com.han.util;import org.springframework.beans.BeansException;import org.springframework.context.ApplicationContext;import org.springframework.context.ApplicationContextAware;import org.springframework.stereotype.Component;/** * @author M.han * @title: ApplicationUtils * @projectName springboot-redis * @description: 获取spring中的bean * @date 2020/12/15 20:26 */@Componentpublic class ApplicationContextUtils implements ApplicationContextAware {    private static ApplicationContext applicationContext;    /***     *     * @param applicationContext 已经创建好的工厂对象     * @throws BeansException     */    @Override    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {        ApplicationContextUtils.applicationContext = applicationContext;    }    //下面是自定义获取bean    /***     *根据id来获取bean     */    public static Object getBean(String id){        return applicationContext.getBean(id);    }    /***     * 通过类型获取bean     * @param clazz     * @return     */    public static Object getBean(Class clazz){        return applicationContext.getBean(clazz);    }    /***     * 根据id和类型同时获取bean     * @param id     * @param clazz     * @return     */    public static Object getBean(String id,Class clazz){        return applicationContext.getBean(id,clazz);    }}
  • mapper.xml文件中指定redis缓存
<?xml version="1.0" encoding="UTF-8" ?>        select id,username,password from user    
  • yaml文件配置信息
# 应用名称spring:  application:    name: springboot-redis01  redis:    host:      port:      database: 0    jedis:      #redis连接池信息      pool:        max-active: 8        min-idle: 0        max-idle: 8        max-wait: -1  datasource:    type: com.alibaba.druid.pool.DruidDataSource    driver-class-name: com.mysql.cj.jdbc.Driver    url: jdbc:mysql://--------/db?characterEncoding=utf-8&serverTimezone=GMT%2B8    username: root    password: server:  servlet:    context-path: /redis01mybatis:  mapper-locations: classpath*:com/han/dao/*.xml  type-aliases-package: com.han.pojologging:  level:    root: info    com.han.dao: debug

注意启动文件上添加MapperScan注解扫描。

通过以上配置,只要redis缓存中有该数据,mybatis就不会执行查询,而是从缓存中取数据。

作者|MrHanhan|博客园

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/566822.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机用手机的网络,电脑做热点让手机上网_电脑开热点给手机用

2016-11-26 12:00:20你好!很高兴为你解答&#xff0c;有两个解决办法:1.在每台机的本地连接--属性--常规--internet协议(TCP/IP)--常规里,设置成"自动获取IP地址"2.在每台机的本地连接--...2017-01-06 14:44:121.打开任务栏右下角的网络连接&#xff0c;在弹出的界面…

shell开启飞行模式_原来手机飞行模式有这么多用处!99%的深圳人都不知道...

相信大家都知道我们的手机里有个功能叫「飞行模式」(又称航空模式)它可以关掉手机收发信号的装置避免手机信号对飞机飞行造成干扰来源&#xff1a;网络那么对于不常坐飞机的人来说「飞行模式」功能是不是毫无用处呢&#xff1f;当然不是今天易小姐就带大家解锁关于「飞行模式」…

计算机学报在线阅读,面向目标检测与姿态估计的联合文法模型计算机学报.pdf...

第卷第期 计 算 机 学 报&#xff13;&#xff17; &#xff11;&#xff10;&#xff36;&#xff4f;&#xff4c;&#xff0e;&#xff13;&#xff17;&#xff2e;&#xff4f;&#xff0e;&#xff11;&#xff10;年月&#xff12;&#xff10;&#xff11;&#xff14;…

联想微型计算机启天e4300,戴尔轻薄商务本Latitude E4200/E4300开卖

戴尔随迅驰2平台的发布全面更新了自己的Latitude商用笔记本产品线&#xff0c;之前15和14寸的E6000/E5000系列已经上市销售&#xff0c;今天两款轻薄型号E4300/E4200也摆上了戴尔美国官网的货架。13.3寸的E4300目标直指联想ThinkPad X300/X301系列&#xff0c;虽然在轻薄程度上…

python读取坐标文本文件_Python 实现文件读写、坐标寻址、查找替换功能

读文件打开文件(文件需要存在)#打开文件f open("data.txt","r") #设置文件对象print(f)#文件句柄f.close() #关闭文件#为了方便&#xff0c;避免忘记close掉这个文件对象&#xff0c;可以用下面这种方式替代with open(data.txt,"r") as f: #设置…

北京大学计算机科学李丰,中文智能问答系统作业解析-北京大学计算机科学技术研究所.PDF...

中文智能问答系统作业解析-北京大学计算机科学技术研究所中文智能问答系统作业解析互联网数据挖掘北京大学计算机研究所语言计算与互联网挖掘研究室封闭测试结果排序队伍 封闭测试 开放测试1200012753 1200012756 1200012767 1200012900 19.9 20.41100016614 1100016639 120001…

python4发布_Python 3.4.1 发布

Python 3.4.1 发布了&#xff0c;改进记录&#xff1a;Core and BuiltinsIssue #21418: Fix a crash in the builtin function super() when called without argument and without current frame (ex: embedded Python).Issue #21425: Fix flushing of standard streams in the…

浙江大学计算机考研408上岸,2016年跨考上岸浙江大学计算机研究生,初试412分经验谈!...

本帖最后由 sqrt7 于 2019-5-22 18:49 编辑一、俺为什么读书 。之前好多同学都加我QQ&#xff0c;让我介绍计算机考研的经验&#xff0c;在这里&#xff0c;我就以自己这一年左右时间的经历和感受谈一谈吧。先报一下自己的分数&#xff0c;总分412。总得来说这次考研发挥还是挺…

医疗小程序源码_不懂商城小程序源码,如何快速创建小程序商城?

小程序在近来发展十分迅速&#xff0c;从微信小程序游戏出发&#xff0c;到现在渗透到各种功能类型&#xff0c;甚至已经扩展到了其他的应用程序上。那么如今很多的小程序商城应该怎么创建呢&#xff1f;不懂商城小程序源码也可以自己制作吗&#xff1f;当然可以&#xff0c;下…

python的标准类型内建函数_Python随手笔记之标准类型内建函数

Python提供了一些内建函数用于基本对象类型&#xff1a;cmp()&#xff0c;repr()&#xff0c;str()&#xff0c;type()和等同于repr()的( )操作符(1)type()type的用法如下&#xff1a;type(object)接受一个对象作为参数&#xff0c;并返回它的类型。他的返回值是一个类型对象。…

计算机快捷键任务管理器,任务管理器快捷键,小编告诉你电脑如何打开任务管理器...

电脑系统的任务管理器是Windows提供有关计算机性能的信息&#xff0c;并显示了计算机上所运行的程序和进程的详细信息&#xff0c;从这里可以查看到当前系统的进程数、CPU使用比率、更改的内存、容量等数据。那么&#xff0c;任务管理器怎么样打开呢&#xff1f;下面&#xff0…

mysql中对比月_详解Mysql中日期比较大小的方法

假如有个表product有个字段add_time,它的数据类型为datetime,有人可能会这样写sql&#xff1a;代码如下select * from product where add_time 2013-01-12对于这种语句&#xff0c;如果你存储的格式是YY-mm-dd是这样的&#xff0c;那么OK&#xff0c;如果你存储的格式是&#…

html文字如何排布成圆形,css多个扇形怎么拼凑成圆?

可以用斜切旋转扇形.pie {position: relative;margin: 1em auto;padding: 0;width: 32em;height: 32em;border-radius: 50%;list-style: none;overflow: hidden;}.slice {overflow: hidden;position: absolute;top: 0;right: 0;width: 50%;height: 50%;transform-origin: 0% 10…

python webdriver 等待网页已登录_python基础编程:python+selenium实现163邮箱自动登陆的方法...

本文介绍了让我们先来预览一下代码运行效果吧&#xff1a;首先分析163邮箱登陆页面的网页结构(按F12或单击鼠标右键选择审查元素)1、定位到登陆框(注意登录框是一个iframe&#xff0c;如果不定位到iframe的话是无法找到之后的邮箱地址框和密码输入框的)2、定位到邮箱地址框(nam…

计算机应用技木就业前京,计算机专业毕业的研究生在京就业情况及启示.doc

计算机专业毕业的研究生在京就业情况及启示计算机专业毕业的研究生在京就业情况及启示【摘要】本项研究通过走访调研、问卷调查的方式&#xff0c;对部分在京工作的计算机方向毕业研究生的生活情况、工作状况、就业影响因素等方面进行就业跟踪调查&#xff0c;进而分析当前就业…

python爬取文字编程_Python爬取网站内容并进行文字预处理(英文)

注&#xff1a;输出部分用省略号代替...爬取网站 import urllib.requestresponse urllib.request.urlopen(http://php.net/) html response.read()print(html) 输出&#xff1a; b\n\n\n\n \n \n\n PHP: Hypertext Preprocessor\n\n \n \n 转换为干净文本 import urllib.requ…

2021年考计算机考研三战,考研越来越难,2021考研人将会面临哪三大挑战?

2.大批二战三战甚至四战的考生加入在17考研之前的高分考生&#xff0c;是可以调剂一所不错的学校。但这三年的情况是&#xff0c;不少400多的考生都无学可上&#xff0c;这一点很多关注往年考研调剂的小伙伴肯定是有所了解的。这些已经“半步踏入研究生生活”的考生&#xff0c…

ios开发 多人语音聊天_在 Unity 多人游戏中实现语音对话

我们曾经不止一次为大家分享过游戏中的实时音视频&#xff0c;例如怎么实现游戏中的听声辨位、狼人杀游戏中的语音聊天挑战等。基本上&#xff0c;都是从技术原理和 Agora SDK 出发来分享的。这次我们换一个角度。我们将从 Unity 开发者的角度分享一下&#xff0c;在 Unity 中如…

搜索用计算机弹奏9277的数字,计算机基础知识参考试题(含答案)

计算机基础知识参考试题(含答案)计算机基础知识参考试题及答案解析一、单选题1.1946年诞生的世界上公认的第一台电子计算机是( ENIA)。2.第一台计算机在研制过程中采用了哪位科学家的两点改进意见(冯诺依曼)。3.第二代电子计算机所采用的电子元件是(晶体管)。4.硬盘属于(外部存…

dscp值_TOS-DSCP对照表

TOS/DSCP对照表在IP网络中&#xff0c;IPv4报文中有三种承载QoS优先级标签的方式&#xff0c;分别为基于二层的CoS字段(IEEE802.1p)的优先级、基于IP层的IP优先级字段ToS优先级和基于IP层的DSCP(Differentiated Services Codepoint)字段优先级。每种优先级的定义如下&#xff1…