likes
comments
collection
share

【基础篇】Redis深入理解与实践指南(六)之Spring Boot集成Redis

作者站长头像
站长
· 阅读数 46

Spring Data & Spring Boot

在Spring Data诞生之前,操作数据库的工具有:JDBCJPAMybatis等,通过框架提供的驱动连接到数据库,然后根据框架的API来操作数据。在Spring Boot诞生的同时诞生了Spring Data,提供了一层统一的抽象来实现数据操作,极大地简化了各框架之间的复杂配置;因此Spring Data也是和Spring Boot齐名的项目,一个是业务开发层面的,而另一个是数据操作层面的。

Redis Data Redis的底层引擎变更

在spring-boot-starter-data-redis 1.5.x版本的默认的Redis客户端是Jedis实现的,spring-boot-starter-data-redis 2.x版本中默认客户端是用Lettuce实现的。

那么,为什么要更换底层连接引擎Jedis为Luttuce呢?

参考官方Issue解释: Why is Lettuce the default Redis client used in Spring Session Redis? #789

另外,Jedis 跟Lettuce的区别比较,如下所示:

  • Jedis在实现上是直接连接的redis server,如果在多线程环境下是非线程安全的,这个时候只有使用连接池,为每个Jedis实例增加物理连接;
  • Lettuce的连接是基于Netty的,连接实例(StatefulRedisConnection)可以在多个线程间并发访问,应为StatefulRedisConnection是线程安全的,所以一个连接实例(StatefulRedisConnection)就可以满足多线程环境下的并发访问,当然这个也是可伸缩的设计,一个连接实例不够的情况也可以按需增加连接实例。

参考官方分析和技术实现细节比较,可知:异步非阻塞的Luttuce优于阻塞的Jedis,因此Redis-Java客户端更换为底层实现为Luttuce了

管中窥豹,未来一定属于异步非阻塞

Spring Boot整合Redis

导入依赖

<!--操作Redis-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

配置连接

# 配置Redis
spring.redis.host=127.0.0.1
spring.redis.port=6379

测试连接

package com.deepinsea.springbootredistest;
​
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.connection.RedisConnection;
import org.springframework.data.redis.core.RedisTemplate;
​
@SpringBootTest
class SpringbootRedisTestApplicationTests {
​
    @Autowired
    private RedisTemplate redisTemplate;
​
    @Test
    void contextLoads() {
​
        // redisTemplate    操作不同的数据类型,API和我们的指令是一样的
        // opsForValue 操作字符串 类型String
        // opsForList  操作List  类似List
        // opsForSet
        // opsForHash
        // opsForZSet
        // opsForGeo
        // opsForHyperLogLog
        // opsForValue().setBit()
​
        // 除了基本的操作,我们常用的方法都可以直接通过redisTemplate操作,比如事务,和基本的CRUD
​
        // 获取redis的连接对象
        // RedisConnection connection = redisTemplate.getConnectionFactory().getConnection();
        // connection.flushDb();
        // connection.flushAll();
​
        redisTemplate.opsForValue().set("mykey","南街北巷");
        System.out.println(redisTemplate.opsForValue().get("mykey"));
    }
​
}

自定义RedisTemplate

RedisTemplate源码分析

下面是RedisTemplate的源码实现,我们可以通过源码了解一下其设计思路,方便封装自己的工具类:

    @Bean
    @ConditionalOnMissingBean(
        name = {"redisTemplate"}
    ) // 我们可以自己定义redisTemplate来替换这个默认的!
    @ConditionalOnSingleCandidate(RedisConnectionFactory.class)
    public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
        // 默认的 RedisTemplate 没有过多的设置,redis对象都是需要序列化!
        // 两个泛型都是 Object Object 类型,我们后续使用需要强制转换<String,Object>
        RedisTemplate<Object, Object> template = new RedisTemplate();
        template.setConnectionFactory(redisConnectionFactory);
        return template;
    }
​
    @Bean
    @ConditionalOnMissingBean
    @ConditionalOnSingleCandidate(RedisConnectionFactory.class)
    public StringRedisTemplate stringRedisTemplate(RedisConnectionFactory redisConnectionFactory) { // 由于 String 是redis中最常使用的类型,所以说单独提出来了一个Bean
        StringRedisTemplate template = new StringRedisTemplate();
        template.setConnectionFactory(redisConnectionFactory);
        return template;
    }

默认的序列化是JDK中的序列化,而JDK序列化会导致中文在Redis中转义为字符,因此我们需要自定义序列化模板:

【基础篇】Redis深入理解与实践指南(六)之Spring Boot集成Redis

【基础篇】Redis深入理解与实践指南(六)之Spring Boot集成Redis

因为Java Bean对象与Redis Json对象之间进行数据传输,存在类型转换的问题,因此需要进行序列化反序列化

如果直接保存对象而不进行序列化,那么会报如下所示的序列化错误提示:

【基础篇】Redis深入理解与实践指南(六)之Spring Boot集成Redis

下面我们来自定义RestTemplate,来解决上面的序列化和反序列化问题:

自定义RestTemplate配置

我们来编写一个自己的RedisConfig配置文件:

package com.deepinsea.springbootredistest.config;
​
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnSingleCandidate;
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.serializer.Jackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
​
/**
 * @author deepinsea
 * @data 2020/12/29 0:22
 */
@Configuration
public class RedisConfig {
​
    /**
     * 编写我们自己的 redisTemplate
     * 使用Jackson将对象转为json字符串
     */
    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
        // 一般我们为了开发方便,会直接使用<String, Object>
        RedisTemplate<String, Object> template = new RedisTemplate<String, Object>();
        template.setConnectionFactory(factory);
​
        // 序列化配置
        //使用Jackson2JsonRedisSerializer来序列化和反序列化redis的value值(默认使用JDK的序列化方式)
        Jackson2JsonRedisSerializer jacksonSerial = new Jackson2JsonRedisSerializer(Object.class);
        ObjectMapper om = new ObjectMapper();
        // 指定要序列化的域,field,get和set,以及修饰符范围,ANY是都有包括private和public
        om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        // 指定序列化输入的类型,类必须是非final修饰的,final修饰的类,比如String,Integer等会跑出异常
        // 原来的"om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);"方法已经过期了,2.10.0版本以后默认实现是activateDefaultTyping方法
        om.activateDefaultTyping(LaissezFaireSubTypeValidator.instance, ObjectMapper.DefaultTyping.NON_FINAL);
        jacksonSerial.setObjectMapper(om);
​
        StringRedisSerializer stringRedisSerializer = new StringRedisSerializer();
        //使用StringRedisSerializer来序列化和反序列化redis的key值,序列化顺序为:key => value
        template.setKeySerializer(stringRedisSerializer);
        // hash的key也采用String的序列化方式
        template.setHashKeySerializer(stringRedisSerializer);
        // value序列化方式采用jackson
        template.setValueSerializer(jacksonSerial);
        // hash的value序列化方式采用jackson
        template.setHashValueSerializer(jacksonSerial);
        template.afterPropertiesSet();
​
        return template;
    }
​
}

测试RedisConfig的使用:

package com.deepinsea.springbootredistest;
​
import com.deepinsea.springbootredistest.pojo.User;
import com.fasterxml.jackson.core.JsonProcessingException;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
​
@SpringBootTest
class SpringbootRedisTestApplicationTests {
​
    /**
     * @Qualifier: 当一个接口有多个实现的时候,为了指名具体调用哪个类的实现。
     */
    @Autowired
    @Qualifier("redisTemplate")
    private RedisTemplate redisTemplate;
​
    @Test
    void contextLoads() {
​
        // redisTemplate    操作不同的数据类型,API和我们的指令是一样的
        // opsForValue 操作字符串 类型String
        // opsForList  操作List  类似List
        // opsForSet
        // opsForHash
        // opsForZSet
        // opsForGeo
        // opsForHyperLogLog
        // opsForValue().setBit()
​
        // 除了基本的操作,我们常用的方法都可以直接通过redisTemplate操作,比如事务,和基本的CRUD
​
        // 获取redis的连接对象
        // RedisConnection connection = redisTemplate.getConnectionFactory().getConnection();
        // connection.flushDb();
        // connection.flushAll();
​
        redisTemplate.opsForValue().set("mykey","南街北巷");
        System.out.println(redisTemplate.opsForValue().get("mykey"));
    }
​
    @Test
    public void test() throws JsonProcessingException {
        // 真实开发一般都使用Json传递数值
        User user = new User("南街北巷", 21);
        // 使用Jackson进行序列化(JSON(JavaScriptObjectNotation,JavaScript对象格式,即将json数据转为字节流保存在后台内存中,一般指json对象->json字符串)操作,且静态变量不会被序列化)
        // 将user对象转为Json字符串(后台到前台:对象->json对象->json字符串,前台到后台:json对象->json字符串),json字符串是json对象的String形式,json对象可以直接根据" 对象.属性"的方式取值
//        String jsonUser = new ObjectMapper().writeValueAsString(user);  // 这里我们只用jackson测试序列化,还是直接利用Serializable接口实现自己的序列化模板
        redisTemplate.opsForValue().set("user",user);
        System.out.println(redisTemplate.opsForValue().get("user"));
    }
}

封装一个Redis工具类

实际开发中不可能直接操作原生的jedis进行所有开发,效率低下;因此需要一个使用高度封装了Jedis的RedisTemplate来进行开发,下面来编写自定义的RedisUtil工具类:

package com.deepinsea.springbootredistest.utils;
​
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
​
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;
​
/**
 * @author 南街北巷
 * @data 2020/12/29 6:42
 */
@Component
public class RedisUtil {
​
    @Autowired
    private RedisTemplate<String, Object> redisTemplate;
​
    // =============================common============================
​
    /**
     * 指定缓存失效时间
     *
     * @param key  键
     * @param time 时间(秒)
     */
    public boolean expire(String key, long time) {
        try {
            if (time > 0) {
                redisTemplate.expire(key, time, TimeUnit.SECONDS);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
    /**
     * 根据key 获取过期时间
     *
     * @param key 键 不能为null
     * @return 时间(秒) 返回0代表为永久有效
     */
    public long getExpire(String key) {
        return redisTemplate.getExpire(key, TimeUnit.SECONDS);
    }
​
​
    /**
     * 判断key是否存在
     *
     * @param key 键
     * @return true 存在 false不存在
     */
    public boolean hasKey(String key) {
        try {
            return redisTemplate.hasKey(key);
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
​
    /**
     * 删除缓存
     *
     * @param key 可以传一个值 或多个
     */
    @SuppressWarnings("unchecked")
    public void del(String... key) {
        if (key != null && key.length > 0) {
            if (key.length == 1) {
                redisTemplate.delete(key[0]);
            } else {
                redisTemplate.delete((Collection<String>) 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成功 false失败
     */
​
    public boolean set(String key, Object value) {
        try {
            redisTemplate.opsForValue().set(key, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
​
    /**
     * 普通缓存放入并设置时间
     *
     * @param key   键
     * @param value 值
     * @param time  时间(秒) time要大于0 如果time小于等于0 将设置无限期
     * @return true成功 false 失败
     */
​
    public boolean set(String key, Object value, long time) {
        try {
            if (time > 0) {
                redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
            } else {
                set(key, value);
            }
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
​
    /**
     * 递增
     *
     * @param key   键
     * @param delta 要增加几(大于0)
     */
    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)
     */
    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
     */
    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);
    }
​
    /**
     * HashSet
     *
     * @param key 键
     * @param map 对应多个键值
     */
    public boolean hmset(String key, Map<String, Object> map) {
        try {
            redisTemplate.opsForHash().putAll(key, map);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
​
    /**
     * HashSet 并设置时间
     *
     * @param key  键
     * @param map  对应多个键值
     * @param time 时间(秒)
     * @return true成功 false失败
     */
    public boolean hmset(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 false;
        }
    }
​
​
    /**
     * 向一张hash表中放入数据,如果不存在将创建
     *
     * @param key   键
     * @param item  项
     * @param value 值
     * @return true 成功 false失败
     */
    public boolean hset(String key, String item, Object value) {
        try {
            redisTemplate.opsForHash().put(key, item, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
    /**
     * 向一张hash表中放入数据,如果不存在将创建
     *
     * @param key   键
     * @param item  项
     * @param value 值
     * @param time  时间(秒) 注意:如果已存在的hash表有时间,这里将会替换原有的时间
     * @return true 成功 false失败
     */
    public boolean hset(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 false;
        }
    }
​
​
    /**
     * 删除hash表中的值
     *
     * @param key  键 不能为null
     * @param item 项 可以使多个 不能为null
     */
    public void hdel(String key, Object... item) {
        redisTemplate.opsForHash().delete(key, item);
    }
​
​
    /**
     * 判断hash表中是否有该项的值
     *
     * @param key  键 不能为null
     * @param item 项 不能为null
     * @return true 存在 false不存在
     */
    public boolean hHasKey(String key, String item) {
        return redisTemplate.opsForHash().hasKey(key, item);
    }
​
​
    /**
     * hash递增 如果不存在,就会创建一个 并把新增后的值返回
     *
     * @param key  键
     * @param item 项
     * @param by   要增加几(大于0)
     */
    public double hincr(String key, String item, double by) {
        return redisTemplate.opsForHash().increment(key, item, by);
    }
​
​
    /**
     * hash递减
     *
     * @param key  键
     * @param item 项
     * @param by   要减少记(小于0)
     */
    public double hdecr(String key, String item, double by) {
        return redisTemplate.opsForHash().increment(key, item, -by);
    }
​
​
    // ============================set=============================
​
    /**
     * 根据key获取Set中的所有值
     *
     * @param key 键
     */
    public Set<Object> sGet(String key) {
        try {
            return redisTemplate.opsForSet().members(key);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }
​
​
    /**
     * 根据value从一个set中查询,是否存在
     *
     * @param key   键
     * @param value 值
     * @return true 存在 false不存在
     */
    public boolean sHasKey(String key, Object value) {
        try {
            return redisTemplate.opsForSet().isMember(key, value);
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
​
    /**
     * 将数据放入set缓存
     *
     * @param key    键
     * @param values 值 可以是多个
     * @return 成功个数
     */
    public long sSet(String key, Object... values) {
        try {
            return redisTemplate.opsForSet().add(key, values);
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }
​
​
    /**
     * 将set数据放入缓存
     *
     * @param key    键
     * @param time   时间(秒)
     * @param values 值 可以是多个
     * @return 成功个数
     */
    public long sSetAndTime(String key, long time, Object... values) {
        try {
            Long count = redisTemplate.opsForSet().add(key, values);
            if (time > 0) {
                expire(key, time);
            }
            return count;
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }
​
​
    /**
     * 获取set缓存的长度
     *
     * @param key 键
     */
    public long sGetSetSize(String key) {
        try {
            return redisTemplate.opsForSet().size(key);
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }
​
​
    /**
     * 移除值为value的
     *
     * @param key    键
     * @param values 值 可以是多个
     * @return 移除的个数
     */
​
    public long setRemove(String key, Object... values) {
        try {
            Long count = redisTemplate.opsForSet().remove(key, values);
            return count;
        } catch (Exception e) {
            e.printStackTrace();
            return 0;
        }
    }
​
    // ===============================list=================================
​
    /**
     * 获取list缓存的内容
     *
     * @param key   键
     * @param start 开始
     * @param end   结束 0 到 -1代表所有值
     */
    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 键
     */
    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倒数第二个元素,依次类推
     */
    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 值
     */
    public boolean lSet(String key, Object value) {
        try {
            redisTemplate.opsForList().rightPush(key, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
​
    /**
     * 将list放入缓存
     *
     * @param key   键
     * @param value 值
     * @param time  时间(秒)
     */
    public boolean lSet(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 false;
        }
​
    }
​
​
    /**
     * 将list放入缓存
     *
     * @param key   键
     * @param value 值
     * @return
     */
    public boolean lSet(String key, List<Object> value) {
        try {
            redisTemplate.opsForList().rightPushAll(key, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
​
    }
​
​
    /**
     * 将list放入缓存
     *
     * @param key   键
     * @param value 值
     * @param time  时间(秒)
     * @return
     */
    public boolean lSet(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 false;
        }
    }
​
​
    /**
     * 根据索引修改list中的某条数据
     *
     * @param key   键
     * @param index 索引
     * @param value 值
     * @return
     */
​
    public boolean lUpdateIndex(String key, long index, Object value) {
        try {
            redisTemplate.opsForList().set(key, index, value);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
​
​
    /**
     * 移除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;
        }
​
    }
​
}

测试使用

测试RedisUtil的使用:

package com.deepinsea.springbootredistest;
​
import com.deepinsea.springbootredistest.pojo.User;
import com.deepinsea.springbootredistest.utils.RedisUtil;
import com.fasterxml.jackson.core.JsonProcessingException;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
​
@SpringBootTest
class SpringbootRedisTestApplicationTests {
​
    /**
     * @Qualifier: 当一个接口有多个实现的时候,为了指名具体调用哪个类的实现。
     */
    @Autowired
    @Qualifier("redisTemplate")
    private RedisTemplate redisTemplate;
​
    @Autowired
    private RedisUtil redisUtil;
​
    @Test
    public void test1(){
        redisUtil.set("name","deepinsea");
        System.out.println(redisUtil.get("name"));
    }
​
    @Test
    void contextLoads() {
​
        // 在企业开发中,我们80%的情况下,都不会使用这个原生的方式去编写代码!
        // 而是选择编写RedisUtils;
​
        // redisTemplate    操作不同的数据类型,API和我们的指令是一样的
        // opsForValue 操作字符串 类型String
        // opsForList  操作List  类似List
        // opsForSet
        // opsForHash
        // opsForZSet
        // opsForGeo
        // opsForHyperLogLog
        // opsForValue().setBit()
​
        // 除了基本的操作,我们常用的方法都可以直接通过redisTemplate操作,比如事务,和基本的CRUD
​
        // 获取redis的连接对象
        // RedisConnection connection = redisTemplate.getConnectionFactory().getConnection();
        // connection.flushDb();
        // connection.flushAll();
​
        redisTemplate.opsForValue().set("mykey","南街北巷");
        System.out.println(redisTemplate.opsForValue().get("mykey"));
    }
​
    @Test
    public void test() throws JsonProcessingException {
        // 真实开发一般都使用Json传递数值
        User user = new User("南街北巷", 21);
        // 使用Jackson进行序列化(JSON(JavaScriptObjectNotation,JavaScript对象格式,即将json数据转为字节流保存在后台内存中,一般指json对象->json字符串)操作,且静态变量不会被序列化)
        // 将user对象转为Json字符串(后台到前台:对象->json对象->json字符串,前台到后台:json对象->json字符串),json字符串是json对象的String形式,json对象可以直接根据" 对象.属性"的方式取值
//        String jsonUser = new ObjectMapper().writeValueAsString(user);  // 这里我们只用jackson测试序列化,还是直接利用Serializable接口实现自己的序列化模板
        redisTemplate.opsForValue().set("user",user);
        System.out.println(redisTemplate.opsForValue().get("user"));
    }
}

所有的redis操作,其实十分简单,更重要的是去理解redis的思想和每一种数据结构的用处和作用场景。

下一篇,我们就要进入到分布式相关的部分了,有关Redis的快照、网络和安全等高级配置命令的内容了:

欢迎关注白羊🐏,感谢观看ヾ(◍°∇°◍)ノ゙

转载自:https://juejin.cn/post/7132169401503055880
评论
请登录