微服务,微架构[四]之springboot集成Redis缓存

本文涉及的产品
云原生网关 MSE Higress,422元/月
注册配置 MSE Nacos/ZooKeeper,118元/月
服务治理 MSE Sentinel/OpenSergo,Agent数量 不受限
简介: 一、介绍:          spring data 框架提供了对Redis的操作,RedisTemplate 可以方便的操作redis缓存,极大的提高了开发效率,其实在这里  很多 插件都是spring 进行了封装例如:jdbcTemplate,mongTemplate等等工具类,我们只需要使用他提供的工具类即可,毕竟所有的开源都是经过大量的实践检验,个人认为比我们自己封装的要好,当然

一、介绍:

         spring data 框架提供了对Redis的操作,RedisTemplate 可以方便的操作redis缓存,极大的提高了开发效率,其实在这里  很多 插件都是spring 进行了封装例如:jdbcTemplate,mongTemplate等等工具类,我们只需要使用他提供的工具类即可,毕竟所有的开源都是经过大量的实践检验,个人认为比我们自己封装的要好,当然不外乎也有特别的高手或者爱好者自己封装。

         spring boot 在操作Redis数据库时,经常会用对象或者集合存储数据,大家都知道,我们在读写磁盘时需要将数据进行序列化和反序列的过程。由于springboot没有帮我们处理数据的序列化在保持到redis的时候需要手动处理序列化,在springboot官方文档中会有StringRedisTemplate操作数据,从名称上来看,就可以看出是专门处理字符串的实现类,其实StringRedisTemplate就是对RedisTemplate的是一个实现,要将对象存储那么就需要我们自己定义序列化类  RedisObjectSerializer  就是我们自己定义的序列化和反序列类,专门用于保持对象进行序列化的实现

二、参数说明

配置数据库索引(默认为0)

spring.redis.database=0

配置服务器地址

spring.redis.host=localhost

配置服务器连接端口

spring.redis.port=6379

配置服务器连接密码(默认为空)

spring.redis.password=

配置连接池最大连接数(使用负值表示没有限制)

spring.redis.pool.max-active=8

配置连接池最大阻塞等待时间(使用负值表示没有限制)

spring.redis.pool.max-wait=-1

配置连接池中的最大空闲连接

spring.redis.pool.max-idle=8

配置连接池中的最小空闲连接

spring.redis.pool.min-idle=0

配置连接超时时间(毫秒)

spring.redis.timeout=0

三、代码演示

1、序列化反序列化类

/**   
 * @Title: RedisObjectSerializer.java 
 * @Package com.eshengtai.service
 * Copyright: Copyright (c) 2015
 * @author: abc   
 * @date: 2017年5月12日 下午3:46:18 
 *
 */
package com.eshengtai.service;

import org.springframework.core.convert.converter.Converter;
import org.springframework.core.serializer.support.DeserializingConverter;
import org.springframework.core.serializer.support.SerializingConverter;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.data.redis.serializer.SerializationException;

public class RedisObjectSerializer implements RedisSerializer<Object> {

    private Converter<Object, byte[]> serializer = new SerializingConverter();
    private Converter<byte[], Object> deserializer = new DeserializingConverter();

    static final byte[] EMPTY_ARRAY = new byte[0];

    public Object deserialize(byte[] bytes) {
        if (isEmpty(bytes)) {
            return null;
        }

        try {
            return deserializer.convert(bytes);
        } catch (Exception ex) {
            throw new SerializationException("Cannot deserialize", ex);
        }
    }

    public byte[] serialize(Object object) {
        if (object == null) {
            return EMPTY_ARRAY;
        }

        try {
            return serializer.convert(object);
        } catch (Exception ex) {
            return EMPTY_ARRAY;
        }
    }

    private boolean isEmpty(byte[] data) {
        return (data == null || data.length == 0);
    }
}

2、RedisTemplate初始化

/**   
 * @Title: RedisConfig.java 
 * @Package com.eshengtai.service
 * Copyright: Copyright (c) 2015
 * @author: abc   
 * @date: 2017年5月12日 下午2:39:11 
 *
 */
package com.eshengtai.service;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.StringRedisSerializer;

@Configuration
public class RedisConfig {

    @Bean
    JedisConnectionFactory jedisConnectionFactory() {
        return new JedisConnectionFactory();
    }

    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
        RedisTemplate<String, Object> template = new RedisTemplate<String, Object>();
        template.setConnectionFactory(jedisConnectionFactory());
        template.setKeySerializer(new StringRedisSerializer());
        template.setValueSerializer(new RedisObjectSerializer());
        return template;
    }

}

3、操作RedisTemplate存储数据

/**   
 * @Title: RedisUtil.java 
 * @Package com.eshengtai.redis
 * Copyright: Copyright (c) 2015
 * @author: abc   
 * @date: 2017年5月12日 上午11:36:15 
 *
 */
package com.eshengtai.service;

import java.util.List;
import java.util.Map;
import java.util.Set;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service;

/**
 * Redis基础操作类
 * 
 * @ClassName: RedisUtil
 * @date: 2017年5月12日 上午11:53:02
 * @version: V1.0
 *
 */
@Service
public class RedisOptionService {

    @Autowired
    private RedisTemplate<String, Object> redisTemplate;

    /**
     * 保存String数据
     * 
     * @Title: setStr
     * @param key
     * @param value
     *
     */
    public void setStr(String key, String value) {
        redisTemplate.opsForValue().set(key, value);
    }

    public String getString(String key) {
        return (String) redisTemplate.opsForValue().get(key);
    }

    /**
     * 操作对象
     * 
     * @Title: setObject
     * @param key
     * @param obj
     *
     */
    public void setObject(String key, Object obj) {
        redisTemplate.opsForValue().set(key, obj);
    }

    public Object getObject(String key) {
        return redisTemplate.opsForValue().get(key);
    }

    /**
     * 保存List数据存储
     * 
     * @param key
     * @param listValue
     * @return
     */
    public void setList(String key, List<?> listValue) {
        redisTemplate.opsForList().leftPush(key, listValue);
    }

    public List<?> getList(String key) {
        return (List<?>) redisTemplate.opsForList().range(key, 0, -1);
    }

    /**
     * 保存Map数据存储
     * 
     * @param key
     * @param mapValue
     * @return
     */
    public void setMap(String key, Map<Object, Object> mapValue) {
        redisTemplate.opsForHash().putAll(key, mapValue);
    }

    public Map<Object, Object> getMap(String key) {
        return redisTemplate.opsForHash().entries(key);
    }

    /**
     * 保存Set数据存储
     * 
     * @param key
     * @param setValue
     * @return
     */
    public void setSet(String key, Set<?> setValue) {
        redisTemplate.opsForSet().add(key, setValue);
    }

    public Set<?> getSet(String key) {
        return (Set<?>) redisTemplate.opsForSet().members(key);
    }

}

4、实体对象类

/**   
 * @Title: EShengTai.java 
 * @Package com.eshengtai.model
 * Copyright: Copyright (c) 2015
 * @author: abc   
 * @date: 2017年5月12日 下午1:33:23 
 *
 */
package com.eshengtai.model;

import java.io.Serializable;

public class EShengTai implements Serializable {
    private String id;
    private String name;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}

5、接口调用演示

/**   
 * @Title: ESTController.java 
 * @Package com.eshengtai.controller
 * Copyright: Copyright (c) 2015
 * @author: abc   
 * @date: 2017年5月12日 上午10:56:03 
 *
 */
package com.eshengtai.controller;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.eshengtai.model.EShengTai;
import com.eshengtai.service.RedisOptionService;

@RestController
@RequestMapping
public class ESTController {

    @Autowired
    private RedisOptionService redisOptionService;

    /**
     * 演示Redis工具类调用
     * 
     * @Title: setString
     * @return
     *
     */
    @RequestMapping("demo")
    public String demo() {
        String key = "springboot_redis";

        // 演示 字符串操作
        String eshengtai = "HelloWorld~";
        System.out.println("-----------------字符串开始------------------");
        redisOptionService.setStr(key, eshengtai);
        System.out.println("-----------------保存完成,获取数据内容------------------");
        System.out.println(redisOptionService.getString(key));
        System.out.println("-----------------字符串结束------------------");

        // 演示 对象操作
        String keyObj = "springboot_redis_obj";
        EShengTai est = new EShengTai();
        est.setId("100");
        est.setName("e生态");

        System.out.println("-----------------对象开始------------------");
        redisOptionService.setObject(keyObj, est);
        System.out.println("-----------------保存完成,获取数据内容------------------");
        EShengTai estCache = (EShengTai) redisOptionService.getObject(keyObj);
        System.out.println(estCache.getId());
        System.out.println(estCache.getName());
        System.out.println("-----------------对象结束------------------");

        // 演示 map操作

        String keyMap = "springboot_redis_map";
        Map map = new HashMap();
        map.put("eshengtai", "eshengtai");
        map.put("eshengtai100", "eshengtaiVal100");
        System.out.println("-----------------Map开始------------------");
        // redisOptionService.setMap(keyMap, map);
        System.out.println("-----------------保存完成,获取数据内容------------------");
        System.out.println(redisOptionService.getMap(keyMap));
        System.out.println("-----------------Map结束------------------");

        // 演示 list操作

        String keylist = "springboot_redis_list";
        List list = new ArrayList();
        list.add(100);
        list.add(2000);
        System.out.println("-----------------List开始------------------");
        // redisOptionService.setList(keylist, list);
        System.out.println("-----------------保存完成,获取数据内容------------------");
        System.out.println(redisOptionService.getList(keylist));
        System.out.println("-----------------List结束------------------");

        return "演示成功~";
    }

}

6、资源文件配置

#tomcatport,projectName
server.port=80
server.context-path=/eshengtai

#1.redis config
spring.redis.database=0
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
spring.redis.pool.max-active=5
spring.redis.pool.max-wait=1000
spring.redis.pool.max-idle=2
spring.redis.pool.min-idle=0
spring.redis.timeout=5000

7、maven pom依赖

<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>spring-boot-redis</groupId>
    <artifactId>spring-boot-redis</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.2.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
    </properties>

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

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

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

        <!-- redis -->

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

    </dependencies>

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



</project>



</project>

以上就是集成Redis全部代码,测试结果图


欢迎大家多提建议,多评论


相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore &nbsp; &nbsp; ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库&nbsp;ECS 实例和一台目标数据库&nbsp;RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&amp;RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
目录
相关文章
|
24天前
|
存储 缓存 NoSQL
解决Redis缓存数据类型丢失问题
解决Redis缓存数据类型丢失问题
167 85
|
21天前
|
运维 监控 Java
为何内存不够用?微服务改造启动多个Spring Boot的陷阱与解决方案
本文记录并复盘了生产环境中Spring Boot应用内存占用过高的问题及解决过程。系统上线初期运行正常,但随着业务量上升,多个Spring Boot应用共占用了64G内存中的大部分,导致应用假死。通过jps和jmap工具排查发现,原因是运维人员未设置JVM参数,导致默认配置下每个应用占用近12G内存。最终通过调整JVM参数、优化堆内存大小等措施解决了问题。建议在生产环境中合理设置JVM参数,避免资源浪费和性能问题。
60 3
|
21天前
|
缓存 监控 NoSQL
Redis经典问题:缓存穿透
本文详细探讨了分布式系统和缓存应用中的经典问题——缓存穿透。缓存穿透是指用户请求的数据在缓存和数据库中都不存在,导致大量请求直接落到数据库上,可能引发数据库崩溃或性能下降。文章介绍了几种有效的解决方案,包括接口层增加校验、缓存空值、使用布隆过滤器、优化数据库查询以及加强监控报警机制。通过这些方法,可以有效缓解缓存穿透对系统的影响,提升系统的稳定性和性能。
|
2月前
|
缓存 NoSQL 关系型数据库
大厂面试高频:如何解决Redis缓存雪崩、缓存穿透、缓存并发等5大难题
本文详解缓存雪崩、缓存穿透、缓存并发及缓存预热等问题,提供高可用解决方案,帮助你在大厂面试和实际工作中应对这些常见并发场景。关注【mikechen的互联网架构】,10年+BAT架构经验倾囊相授。
大厂面试高频:如何解决Redis缓存雪崩、缓存穿透、缓存并发等5大难题
|
2月前
|
存储 缓存 NoSQL
【赵渝强老师】基于Redis的旁路缓存架构
本文介绍了引入缓存后的系统架构,通过缓存可以提升访问性能、降低网络拥堵、减轻服务负载和增强可扩展性。文中提供了相关图片和视频讲解,并讨论了数据库读写分离、分库分表等方法来减轻数据库压力。同时,文章也指出了缓存可能带来的复杂度增加、成本提高和数据一致性问题。
【赵渝强老师】基于Redis的旁路缓存架构
|
1月前
|
负载均衡 Java 开发者
深入探索Spring Cloud与Spring Boot:构建微服务架构的实践经验
深入探索Spring Cloud与Spring Boot:构建微服务架构的实践经验
154 5
|
2月前
|
缓存 NoSQL PHP
Redis作为PHP缓存解决方案的优势、实现方式及注意事项。Redis凭借其高性能、丰富的数据结构、数据持久化和分布式支持等特点,在提升应用响应速度和处理能力方面表现突出
本文深入探讨了Redis作为PHP缓存解决方案的优势、实现方式及注意事项。Redis凭借其高性能、丰富的数据结构、数据持久化和分布式支持等特点,在提升应用响应速度和处理能力方面表现突出。文章还介绍了Redis在页面缓存、数据缓存和会话缓存等应用场景中的使用,并强调了缓存数据一致性、过期时间设置、容量控制和安全问题的重要性。
47 5
|
2月前
|
缓存 NoSQL 中间件
redis高并发缓存中间件总结!
本文档详细介绍了高并发缓存中间件Redis的原理、高级操作及其在电商架构中的应用。通过阿里云的角度,分析了Redis与架构的关系,并展示了无Redis和使用Redis缓存的架构图。文档还涵盖了Redis的基本特性、应用场景、安装部署步骤、配置文件详解、启动和关闭方法、systemctl管理脚本的生成以及日志警告处理等内容。适合初学者和有一定经验的技术人员参考学习。
280 7
|
Java 应用服务中间件 Maven
传统maven项目和现在spring boot项目的区别
Spring Boot:传统 Web 项目与采用 Spring Boot 项目区别
521 0
传统maven项目和现在spring boot项目的区别
|
XML Java 数据库连接
创建springboot项目的基本流程——以宠物类别为例
创建springboot项目的基本流程——以宠物类别为例
160 0
创建springboot项目的基本流程——以宠物类别为例