SpringBoot2整合Redis实现读写操作

作者:syrdbt 时间:2023-08-03 08:19:24 

1. 启动 Redis Server

启动 redis server,如下图所示,端口号 6379:

SpringBoot2整合Redis实现读写操作

2. 工程实例

2.1 工程目录

工程目录如下图所示:

SpringBoot2整合Redis实现读写操作

2.2 pom.xml

引入依赖:


       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-data-redis</artifactId>
       </dependency>

<dependency>
           <groupId>org.apache.commons</groupId>
           <artifactId>commons-pool2</artifactId>
       </dependency>

完整 pom.xml 如下所示:


<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-parent</artifactId>
       <version>2.2.2.RELEASE</version>
       <relativePath/> <!-- lookup parent from repository -->
   </parent>
   <groupId>com.syrdbt</groupId>
   <artifactId>redis-study</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>redis-study</name>
   <description>Demo project for Spring Boot</description>

<properties>
       <java.version>1.8</java.version>
   </properties>

<dependencies>
       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-data-redis</artifactId>
       </dependency>

<dependency>
           <groupId>org.apache.commons</groupId>
           <artifactId>commons-pool2</artifactId>
       </dependency>

<dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-web</artifactId>
       </dependency>

<dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-test</artifactId>
           <scope>test</scope>
           <exclusions>
               <exclusion>
                   <groupId>org.junit.vintage</groupId>
                   <artifactId>junit-vintage-engine</artifactId>
               </exclusion>
           </exclusions>
       </dependency>
   </dependencies>

<build>
       <plugins>
           <plugin>
               <groupId>org.springframework.boot</groupId>
               <artifactId>spring-boot-maven-plugin</artifactId>
           </plugin>
       </plugins>
   </build>

</project>

2.3 Java 源文件

启动类,RedisStudyApplication.java:


package com.syrdbt.redis.study;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class RedisStudyApplication {

public static void main(String[] args) {
       SpringApplication.run(RedisStudyApplication.class, args);
   }

}

控制器,RedisStudyController.java

这里使用 SpringBoot 内置的与 Redis 的工具类:RedisTemplate;

除了 RedisTemplate,SpringBoot 还内置了 StringRedisTemplate ;

StringRedisTemplate 只能对 key=String,value=String 的键值对进行操作,RedisTemplate 可以对任何类型的 key-value 键值对操作;StringRedisTemplate 继承了 RedisTemplate。


package com.syrdbt.redis.study.controller;

import com.sun.tools.javac.code.Attribute;
import com.syrdbt.redis.study.constant.Constant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import java.io.Console;

/**
* @author syrdbt
*/
@RestController
public class RedisStudyController {
   @Autowired
   private RedisTemplate redisTemplate;

/**
    * 通过 key 获取字符串
    */
   @GetMapping("/redis/get")
   public String visitStringByKey(@RequestParam String key) {
       return (String) redisTemplate.opsForValue().get(Constant.NAMESPACE + ":" + key);
   }

/**
    * 在 redis 中设置 key/value
    */
   @GetMapping("/redis/set")
   public String visitStringByKey(@RequestParam String key, @RequestParam String value) {
       try {
           redisTemplate.opsForValue().set(Constant.NAMESPACE + ":" + key, value);
       } catch (Exception e) {
           return "error";
       }
       return "success";
   }
}

redis 配置类,RedisConfig.java :


package com.syrdbt.redis.study.config;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericToStringSerializer;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;

/**
* redis 配置类
*
* @author syrdbt
*/
@Configuration
public class RedisConfig {

private final RedisTemplate redisTemplate;

@Autowired
   public RedisConfig(RedisTemplate redisTemplate) {
       this.redisTemplate = redisTemplate;
   }

@Bean
   @SuppressWarnings("unchecked")
   public RedisTemplate<String, Object> redisTemplate() {
       RedisSerializer<String> stringSerializer = new StringRedisSerializer();
       RedisSerializer<Object> jsonString = new GenericToStringSerializer<>(Object.class);
       redisTemplate.setKeySerializer(stringSerializer);
       redisTemplate.setValueSerializer(jsonString);
       redisTemplate.setHashKeySerializer(stringSerializer);
       redisTemplate.setHashValueSerializer(jsonString);
       return redisTemplate;
   }
}

常量类用作 redis key 的前缀,Constant.java:


package com.syrdbt.redis.study.constant;

/**
* @author syrdbt
* @date 2019-12-10
*/
public class Constant {
   public static final String NAMESPACE = "REDIS-STUDY";
}

3. 测试

写操作,访问 http://localhost:8080/redis/set?key=name&value=syrdbt 。

SpringBoot2整合Redis实现读写操作

读操作,访问http://localhost:8080/redis/get?key=name

SpringBoot2整合Redis实现读写操作

4. 问题

整合 redis 的写入和读出的实例已经完成了。

不过还有 2 个问题:

  • 我没并没有设置主机号、端口号、用户名、密码就访问了 redis,显然 SpringBoot 默认配置了这些,我本机的redis下载之后没有修改密码等配置,所以才可以访问。

  • 正常境况下,不应该直接使用 redisTmplate,应该封装成工具类,这样方便大家使用。

来源:https://xuxiangyang.blog.csdn.net/article/details/104163042

标签:SpringBoot2,Redis,读写操作
0
投稿

猜你喜欢

  • C语言关键字union的定义和使用详解

    2021-09-24 02:40:05
  • Java 自定义注解的魅力

    2023-06-29 14:45:15
  • Springboot基础学习之初识SpringBoot

    2022-08-18 08:48:59
  • C#中常使用进度条的代码

    2021-06-27 23:31:18
  • java 开发中网络编程之IP、URL详解及实例代码

    2023-08-06 10:26:29
  • 四步轻松搞定java web每天定时执行任务

    2022-03-31 20:57:08
  • Android 实现代码混淆的实例

    2023-06-01 22:13:48
  • SpringBoot拦截 器如何获取http请求参数

    2023-11-28 19:40:48
  • Entity Framework使用ObjectContext类

    2023-01-25 16:40:04
  • Android实现自动匹配关键字并且标红功能

    2023-05-29 06:19:28
  • Java实现克隆的三种方式实例总结

    2021-11-21 15:26:14
  • 使用RecyclerView实现水平列表

    2022-04-25 19:27:13
  • C#中C/S端实现WebService服务

    2023-10-16 06:01:43
  • Android沉浸式状态栏微技巧(带你真正理解沉浸式模式)

    2022-04-22 01:28:31
  • SpringBoot使用Mybatis&Mybatis-plus文件映射配置方法

    2023-05-16 12:53:02
  • 基于java ssm springboot实现选课推荐交流平台系统

    2023-06-30 08:22:25
  • Android IntentFilter的匹配规则示例详解

    2022-07-11 19:12:29
  • Android自定义控件之广告条滚动效果

    2022-01-27 05:57:45
  • SpringBoot集成支付宝沙箱支付(支付、退款)

    2022-02-15 16:50:52
  • Java Web使用简单的批处理操作(记事本+Tomcat)

    2021-08-13 10:08:33
  • asp之家 软件编程 m.aspxhome.com