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

SpringBoot整合RedisTemplate如何实现缓存信息监控

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

北京

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

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

看不清楚,换张图片

免费获取短信验证码

SpringBoot整合RedisTemplate如何实现缓存信息监控

这篇文章给大家分享的是有关SpringBoot整合RedisTemplate如何实现缓存信息监控的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

SpringBoot 整合 Redis 数据库实现数据缓存的本质是整合 Redis 数据库,通过对需要“缓存”的数据存入 Redis 数据库中,下次使用时先从 Redis 中获取,Redis 中没有再从数据库中获取,这样就实现了 Redis 做数据缓存。 

按照惯例,下面一步一步的实现 Springboot 整合 Redis 来存储数据,读取数据。

项目添加依赖首页第一步还是在项目添加 Redis 的环境, Jedis。

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

添加redis的参数

spring: ### Redis Configuration  redis:     pool:       max-idle: 10      min-idle: 5      max-total: 20    hostName: 127.0.0.1    port: 6379

编写一个 RedisConfig 注册到 Spring 容器

package com.config;import org.springframework.boot.context.properties.ConfigurationProperties;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.serializer.StringRedisSerializer;import redis.clients.jedis.JedisPoolConfig;@Configurationpublic class RedisConfig {@Bean@ConfigurationProperties(prefix="spring.redis.pool")public JedisPoolConfig jedisPoolConfig() {JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();return jedisPoolConfig;}@Bean@ConfigurationProperties(prefix="spring.redis")public JedisConnectionFactory jedisConnectionFactory(JedisPoolConfig jedisPoolConfig) {JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory(jedisPoolConfig);return jedisConnectionFactory;}@Beanpublic RedisTemplate<String, Object> redisTemplate(JedisConnectionFactory jedisConnectionFactory) {RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();// 关联redisTemplate.setConnectionFactory(jedisConnectionFactory);// 为 key 设置序列化器redisTemplate.setKeySerializer(new StringRedisSerializer());// 为 value 设置序列化器redisTemplate.setValueSerializer(new StringRedisSerializer());return redisTemplate;}}

使用redisTemplate

package com.controller;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;import org.springframework.data.redis.serializer.JdkSerializationRedisSerializer;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;import com.bean.Users;@RestControllerpublic class RedisController {@Autowiredprivate RedisTemplate<String, Object> redisTemplate;@RequestMapping("/redishandle")public String redishandle() {//添加字符串redisTemplate.opsForValue().set("author", "欧阳");//获取字符串String value = (String)redisTemplate.opsForValue().get("author");System.out.println("author = " + value);//添加对象//重新设置序列化器redisTemplate.setValueSerializer(new JdkSerializationRedisSerializer());redisTemplate.opsForValue().set("users", new Users("1" , "张三"));//获取对象//重新设置序列化器redisTemplate.setValueSerializer(new JdkSerializationRedisSerializer());Users user = (Users)redisTemplate.opsForValue().get("users");System.out.println(user);//以json格式存储对象//重新设置序列化器redisTemplate.setValueSerializer(new Jackson2JsonRedisSerializer<>(Users.class));redisTemplate.opsForValue().set("usersJson", new Users("2" , "李四"));//以json格式获取对象//重新设置序列化器redisTemplate.setValueSerializer(new Jackson2JsonRedisSerializer<>(Users.class));user = (Users)redisTemplate.opsForValue().get("usersJson");System.out.println(user);return "home";}}

项目实战中redisTemplate的使用

package com.shiwen.lujing.service.impl;import java.util.List;import java.util.concurrent.TimeUnit;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.core.ValueOperations;import org.springframework.stereotype.Service;import com.fasterxml.jackson.core.JsonProcessingException;import com.fasterxml.jackson.databind.ObjectMapper;import com.shiwen.lujing.dao.mapper.WellAreaDao;import com.shiwen.lujing.service.WellAreaService;import com.shiwen.lujing.util.RedisConstants;@Servicepublic class WellAreaServiceImpl implements WellAreaService {@Autowiredprivate WellAreaDao wellAreaDao;@Autowiredprivate RedisTemplate<String, String> stringRedisTemplate;@Overridepublic String getAll() throws JsonProcessingException {//redis中key是字符串ValueOperations<String, String> opsForValue = stringRedisTemplate.opsForValue();//通过key获取redis中的数据String wellArea = opsForValue.get(RedisConstants.REDIS_KEY_WELL_AREA);//如果没有去查数据库if (wellArea == null) {List<String> wellAreaList = wellAreaDao.getAll();wellArea = new ObjectMapper().writeValueAsString(wellAreaList);//将查出来的数据存储在redis中opsForValue.set(RedisConstants.REDIS_KEY_WELL_AREA, wellArea, RedisConstants.REDIS_TIMEOUT_1, TimeUnit.DAYS);            // set(K key, V value, long timeout, TimeUnit unit)            //timeout:过期时间;  unit:时间单位              //使用:redisTemplate.opsForValue().set("name","tom",10, TimeUnit.SECONDS);            //redisTemplate.opsForValue().get("name")由于设置的是10秒失效,十秒之内查询有结            //果,十秒之后返回为null }return wellArea;}}

redis中使用的key

package com.shiwen.lujing.util;public interface RedisConstants {String REDIS_KEY_JING_SHOU_ZI = "JING-SHOU-ZI";String REDIS_KEY_WELL_AREA = "WELL-AREA";long REDIS_TIMEOUT_1 = 1L;}

补充:SpringBoot整合RedisTemplate实现缓存信息监控

CacheController接口代码

@RestController@RequestMapping("/monitor/cache")public class CacheController{    @Autowired    private RedisTemplate<String, String> redisTemplate;     @PreAuthorize("@ss.hasPermi('monitor:cache:list')")// 自定义权限注解    @GetMapping()    public AjaxResult getInfo() throws Exception    {        // 获取redis缓存完整信息        //Properties info = redisTemplate.getRequiredConnectionFactory().getConnection().info();        Properties info = (Properties) redisTemplate.execute((RedisCallback<Object>) connection -> connection.info());        // 获取redis缓存命令统计信息        //Properties commandStats = redisTemplate.getRequiredConnectionFactory().getConnection().info("commandstats");        Properties commandStats = (Properties) redisTemplate.execute((RedisCallback<Object>) connection -> connection.info("commandstats"));        // 获取redis缓存中可用键Key的总数        //Long dbSize = redisTemplate.getRequiredConnectionFactory().getConnection().dbSize();        Object dbSize = redisTemplate.execute((RedisCallback<Object>) connection -> connection.dbSize());        Map<String, Object> result = new HashMap<>(3);        result.put("info", info);        result.put("dbSize", dbSize);        List<Map<String, String>> pieList = new ArrayList<>();        commandStats.stringPropertyNames().forEach(key -> {            Map<String, String> data = new HashMap<>(2);            String property = commandStats.getProperty(key);            data.put("name", StringUtils.removeStart(key, "cmdstat_"));            data.put("value", StringUtils.substringBetween(property, "calls=", ",usec"));            pieList.add(data);        });        result.put("commandStats", pieList);        return AjaxResult.success(result);    }}

感谢各位的阅读!关于“SpringBoot整合RedisTemplate如何实现缓存信息监控”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

免责声明:

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

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

SpringBoot整合RedisTemplate如何实现缓存信息监控

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

下载Word文档

猜你喜欢

SpringBoot整合RedisTemplate如何实现缓存信息监控

这篇文章给大家分享的是有关SpringBoot整合RedisTemplate如何实现缓存信息监控的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。SpringBoot 整合 Redis 数据库实现数据缓存的本质是整合
2023-06-28

SpringBoot如何实现整合微信支付

这篇文章将为大家详细讲解有关SpringBoot如何实现整合微信支付,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。1.准备工作1.1 数据库表这里涉及微信支付一共两个表:订单表支付记录表1.2 实体类数据
2023-06-22

SpringBoot如何整合RabbitMQ实现死信交换机

本篇内容介绍了“SpringBoot如何整合RabbitMQ实现死信交换机”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!环境Windows1
2023-07-02

编程热搜

  • 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动态编译

目录