• Java关于RedisTemplate的使用分析 附代码


    前言

    这篇文章主要讲解如何使用RedisTemplate以及解释部分源码
    对于方法的源码或者方法使用此处没有讲解,之前写过太多类似的
    (实战再去查看相关函数,会更加明白深层次的含义)

    对于Redis的知识原理以及各个方法的使用之前也有写过很多类似的,可看我之前的文章进行参考:

    1. 源码

    查看对应的RedisAutoConfiguration 源码信息

    // 配置类
    @AutoConfiguration
    
    // 只匹配指定的类在类路径上
    @ConditionalOnClass(RedisOperations.class)
    
    // 开启配置累的注解
    @EnableConfigurationProperties(RedisProperties.class)
    @Import({ LettuceConnectionConfiguration.class, JedisConnectionConfiguration.class })
    public class RedisAutoConfiguration {
    	
    	// 这个注解比较重要,通过Bean装配到spring容器中
    	@Bean
    	// 只有在BeanFactory中没有包含满足指定需求的bean时才匹配
    	@ConditionalOnMissingBean(name = "redisTemplate")
    	// 只有当指定类的bean已经包含在BeanFactory中并且可以确定单个候选bean时才匹配,本质上,主要定义的类型自动连接bean就会成功匹配
    	@ConditionalOnSingleCandidate(RedisConnectionFactory.class)
    	// 看此处两个都是Object,说明key 以及value 都是什么类型都可以
    	public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
    		RedisTemplate<Object, Object> template = new RedisTemplate<>();
    		template.setConnectionFactory(redisConnectionFactory);
    		return template;
    	}
    
    	@Bean
    	@ConditionalOnMissingBean
    	@ConditionalOnSingleCandidate(RedisConnectionFactory.class)
    	// 而此处的key value均为string类型,可看下面的代码
    	public StringRedisTemplate stringRedisTemplate(RedisConnectionFactory redisConnectionFactory) {
    		return new StringRedisTemplate(redisConnectionFactory);
    	}
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33

    StringRedisTemplate类型的key以及value为String
    源码如下:

    public class StringRedisTemplate extends RedisTemplate<String, String> {
    	public StringRedisTemplate() {
    		// 设置key以及value,hash的key以及value都是string类型
    		setKeySerializer(RedisSerializer.string());
    		setValueSerializer(RedisSerializer.string());
    		setHashKeySerializer(RedisSerializer.string());
    		setHashValueSerializer(RedisSerializer.string());
    	}
    	.....
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    对应的RedisTemplate的相关方法,大部分都是org.springframework.data.redis.core.RedisOperations这个类的相关方法,主要是RedisOperations这个类提供的API,比如设置key,value以及查出value值等(对应几种数据结构)
    在这里插入图片描述

    以下分别五种数据结构如下:

    函数描述
    redisTemplate.opsForCluster()操作集群
    redisTemplate.opsForGeo()操作地理位置(对于Geo的实际应用,这篇文章末尾有:Redis框架从入门到学精(全)
    redisTemplate.opsForHash()操作Hash
    redisTemplate.opsForList()操作List
    redisTemplate.opsForValue()操作字符串
    redisTemplate.opsForSet()操作set
    redisTemplate.opsForZSet()操作有序set

    其中StringRedisTemplate操作的方法只不过把对应的类型换作为String类型
    在这里插入图片描述

    关于RedisTemplate以及StringRedisTemplate,两者是不相通的,两者各自调用各自的数据

    类似每一种类型都有很多种方法,大致如下:
    在这里插入图片描述
    根据不同的方法设置不同的参数以及查询获取等

    2. 示例代码

    引入redis的maven包
    具体通过:maven 关于redis data的仓库

    
    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-data-redisartifactId>
        <version>2.7.3version>
    dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    redis的相关连接信息
    通过yml的配置文件引入:(redis有设置密码的时候还需要设置密码)

    spring: 
      redis:
        host: IP
        password: pwd
        port: 6379
    
    • 1
    • 2
    • 3
    • 4
    • 5

    如果为application.properties的配置文件,配置文件这样引入:

    spring.redis.host=IP
    # Redis服务器连接端口
    spring.redis.port=6379
    
    • 1
    • 2
    • 3

    通过上面这两个步骤已经就可使用RedisTeplate(通过@Autowired注入)
    (上面的源码已经对RedisTeplate类通过@Bean装载到spring容器中)

    示例代码如下:

    package com.example.demo;
    
    import org.junit.jupiter.api.Test;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.test.context.SpringBootTest;
    import org.springframework.data.redis.core.StringRedisTemplate;
    import org.springframework.data.redis.core.ValueOperations;
    
    @SpringBootTest
    class DemoApplicationTests {
    
        @Autowired
        StringRedisTemplate stringRedisTemplate;
        @Test
        public void test() {
            ValueOperations<String, String> ops = stringRedisTemplate.opsForValue();
            ops.set("name","码农研究僧");
            String s = ops.get("name");
            System.out.println(s);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    截图如下:

    在这里插入图片描述

  • 相关阅读:
    JavaWeb开发之——DDL-操作表-查询表与创建表(07)
    高级FPGA设计实现结构和优化_(四)综合编码
    springboot入门
    算法分析与设计CH8:线性时间的排序——计数排序、基数排序、桶排序
    BeeWare开发安卓app科目三灯光模拟器
    浅析Java设计模式【2.1】——代理
    使用Echarts.js绘制多条折线图
    k8s驱逐篇(5)-kube-controller-manager驱逐
    从源码看Spring如何解决循环依赖的脉络?鸡生蛋与蛋生鸡的问题!
    C++笔记 03
  • 原文地址:https://blog.csdn.net/weixin_47872288/article/details/126476137