package com.boot.redis.config;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
import java.io.Serializable;
/**
* Redis 配置
*/
@Configuration
public class RedisConfig {
private static final Logger LOGGER = LoggerFactory.getLogger(RedisConfig.class) ;
/**
* 序列化配置
*/
@Bean
public RedisTemplate<String, Serializable> redisTemplate
(LettuceConnectionFactory redisConnectionFactory) {
LOGGER.info("RedisConfig == >> redisTemplate ");
RedisTemplate<String, Serializable> template = new RedisTemplate<>();
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
template.setConnectionFactory(redisConnectionFactory);
return template;
}
}
飞翔的佩奇
- 粉丝: 6164
- 资源: 1607
最新资源
- 各章随堂测试题面.zip
- 基于模糊PID桥式起重机防摇控制设计 请认真阅读以下内容: 1.基本内容:文中以桥式起重机小车-吊重系统为研究对象,研究起重机的防摇摆控制方法,基于拉格朗日方程建立了小车-吊重的动力学模型并求解出传递
- 毕业论文,基于Django实现学生信息管理系统
- seasar官方文档翻译版
- 电机控制算法无差电流预测控制顶刊复现 Model-Free Predictive Current Control of PMSM Drives Based on Extended State Obs
- 傅里叶变换在图像相关性与模板匹配中的应用及MATLAB实现
- YOLO姿态识别绘制关键点
- Peaks函数FFT变换.m
- 4b044体育商品推荐_springboot+vue.zip
- 碱性水溶液(AWE AlK)电解槽双极板多物理场分析及拓扑优化流道设计(针对热效率最大化及扩散功耗最小化设计) 以工业碱性水电解槽的紧凑组装结构为基础,建立了耦合电场、欧拉-欧拉k-ε湍流场及固体传热
- echarts-5.6.0.zip
- 4b043网络海鲜市场_springboot+vue.zip
- 4b042旅游网站_springboot+vue.zip
- 百度热力图定量数据csv,shp,tif 重庆市20240805日20点
- 4b047北部湾地区助农平台_springboot+vue.zip
- 4b046基于SpringBoot的茶叶商城系统的设计与实现_vue.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈