我的编程空间,编程开发者的网络收藏夹
学习永远不晚

讲解springboot连接Redis的教程

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

讲解springboot连接Redis的教程

这篇文章主要介绍“讲解springboot连接Redis的教程”,在日常操作中,相信很多人在讲解springboot连接Redis的教程问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”讲解springboot连接Redis的教程”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

创建springboot项目

讲解springboot连接Redis的教程
讲解springboot连接Redis的教程

NoSQL中选择Redis

讲解springboot连接Redis的教程
讲解springboot连接Redis的教程

项目目录

讲解springboot连接Redis的教程

pom.xml中还需要加入下面的jar包

org.springframework.boot spring-boot-starter-json

application.properties文件中添加Redis服务器信息

spring.redis.host=192.168.5.132spring.redis.port=6379

剩下4个test类,我直接以源码的方式粘出来,里面有些代码是非必须的,我保留了测试的验证过程,所以里面会有冗余代码。(这些代码在我GitHub上的练习项目中也有)

package com.myspringboot.redis;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.context.ConfigurableApplicationContext;@SpringBootApplicationpublic class DemoApplication {  public static void main(String[] args) {    ConfigurableApplicationContext configurableApplicationContext = SpringApplication.run(DemoApplication.class, args);    RedisTest redisTest = configurableApplicationContext.getBean(RedisTest.class);    redisTest.testRedis();  }}
package com.myspringboot.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.StringRedisTemplate;import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;@Configurationpublic class MyTemplate {  @Bean  public StringRedisTemplate getMyTemplate(RedisConnectionFactory redisConnectionFactory){    StringRedisTemplate stringRedisTemplate = new StringRedisTemplate(redisConnectionFactory);    stringRedisTemplate.setHashValueSerializer(new Jackson2JsonRedisSerializer<Object>(Object.class));    return stringRedisTemplate;  }}
package com.myspringboot.redis;import com.fasterxml.jackson.databind.ObjectMapper;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.data.redis.connection.Message;import org.springframework.data.redis.connection.MessageListener;import org.springframework.data.redis.connection.RedisConnection;import org.springframework.data.redis.core.HashOperations;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.core.StringRedisTemplate;import org.springframework.data.redis.hash.Jackson2HashMapper;import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;import org.springframework.stereotype.Component;import java.util.Map;@Componentpublic class RedisTest {  @Autowired  RedisTemplate redisTemplate;  @Autowired  StringRedisTemplate stringRedisTemplate;  @Autowired  ObjectMapper objectMapper;  // 自定义模板  @Autowired  @Qualifier("getMyTemplate")  StringRedisTemplate myStringRedisTemplate;  public void testRedis()  {    //redis中直接查看时,乱码    redisTemplate.opsForValue().set("key1", "hello1");    System.out.println(redisTemplate.opsForValue().get("key1"));    //redis中直接查看时,正常    stringRedisTemplate.opsForValue().set("key2", "hello2");    System.out.println(stringRedisTemplate.opsForValue().get("key2"));    RedisConnection connection = redisTemplate.getConnectionFactory().getConnection();    connection.set("key3".getBytes(), "hello3".getBytes());    System.out.println(new String(connection.get("key3".getBytes())));    HashOperations<String, Object, Object> hash = stringRedisTemplate.opsForHash();    hash.put("key4", "name", "张三");    hash.put("key4", "age", "18");    System.out.println(hash.get("key4", "name"));    System.out.println(hash.entries("key4"));    stringRedisTemplate.setHashValueSerializer(new Jackson2JsonRedisSerializer<Object>(Object.class));    Jackson2HashMapper jackson2HashMapper = new Jackson2HashMapper(objectMapper, false);// true 扁平化(将对象中的参数展开)    User user = new User();    user.setId(123);    user.setName("zhangsan");    stringRedisTemplate.opsForHash().putAll("key5", jackson2HashMapper.toHash(user));    Map map = stringRedisTemplate.opsForHash().entries("key5");    User user1 = objectMapper.convertValue(map, User.class);    System.out.println(user1.getId());    System.out.println(user1.getName());    myStringRedisTemplate.opsForHash().putAll("key6", jackson2HashMapper.toHash(user));    Map map1 = myStringRedisTemplate.opsForHash().entries("key6");    User user2 = objectMapper.convertValue(map, User.class);    System.out.println(user2.getId());    System.out.println(user2.getName());    //发布订阅    myStringRedisTemplate.convertAndSend("qunliao", "hello");    RedisConnection connection1 = myStringRedisTemplate.getConnectionFactory().getConnection();    connection1.subscribe(new MessageListener() {      @Override      public void onMessage(Message message, byte[] bytes) {        byte[] body = message.getBody();        System.out.println(new String(body));      }    }, "qunliao".getBytes());    while (true){      myStringRedisTemplate.convertAndSend("qunliao", "hello");      try {        Thread.sleep(3000);      } catch (InterruptedException e) {        e.printStackTrace();      }    }  }}
package com.myspringboot.redis;public class User {  private int id;  private String name;  public int getId() {    return id;  }  public void setId(int id) {    this.id = id;  }  public String getName() {    return name;  }  public void setName(String name) {    this.name = name;  }}

到此,关于“讲解springboot连接Redis的教程”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

讲解springboot连接Redis的教程

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

讲解springboot连接Redis的教程

这篇文章主要介绍“讲解springboot连接Redis的教程”,在日常操作中,相信很多人在讲解springboot连接Redis的教程问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”讲解springboot连
2023-06-06

【redis】本地连接服务器的redis教程

记录每一个坑 事情的起因呢,是因为朋友问我的。几经周折,自己粗心大意了很多细节,不废话,直接开始    一、redis的安装我就略过了,   二、修改redis的配置文件 redis.conf   1. bind 设置为 0.0.0.0     
【redis】本地连接服务器的redis教程
2022-01-26

RedisLettuce连接redis集群实现过程详细讲解

这篇文章主要介绍了RedisLettuce连接redis集群实现过程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
2023-01-17

springboot连接不上redis怎么解决

这篇文章主要介绍“springboot连接不上redis怎么解决”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“springboot连接不上redis怎么解决”文章能帮助大家解决问题。第一种查看防火墙
2023-07-06

关于连接服务器redis的教程

第一步:下载RedisDesktopManager这个百度一搜就有了,但是现在的版本ssh用不了建议找可以用的版本,这个百度,懂得都懂。第二步:服务器宝塔redis设置在配置文件将bind 127.0.0.1 注释掉将protected-mode的yes改为n
关于连接服务器redis的教程
2014-06-04

springboot连接不上redis的三种解决办法

这篇文章主要介绍了springboot连接不上redis的三种解决办法,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
2023-05-16

SpringBoot项目整合Redis教程详解

这篇文章主要介绍了SpringBoot项目整合Redis教程详解,Redis 是完全开源的,遵守 BSD 协议,是一个高性能的 key-value 数据库。感兴趣的小伙伴可以参考阅读本文
2023-05-13

Python模块对Redis数据库的连接与使用讲解

下面看看Python模块对Redis数据库的连接与使用: 1.Python连接Redis数据库方法:import redisres = redis.Redis( host="127.0.0.1",port=6379,db=0,passwo
2022-06-02

springboot用jedis连接Redis数据库的方法

本篇内容介绍了“springboot用jedis连接Redis数据库的方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!springboot
2023-06-20

使用SpringBoot如何实现远程连接redis服务器

今天就跟大家聊聊有关使用SpringBoot如何实现远程连接redis服务器,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。使用了SpringBoot的项目,在远程连接Redis服务器
2023-05-31

redis远程连接不上如何解决

本篇内容主要讲解“redis远程连接不上如何解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“redis远程连接不上如何解决”吧!问题描述:redis远程服务端运行在192.168.3.90计算
2023-06-30

详解Redis开启远程登录连接

今天使用jedis客户端api连接远程连接redis的时候,一直报错,如下:redis.clients.jedis.exceptions.JedisConnectionException: java.net.ConnectException
2022-06-04

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录