关于RedisTemplate 乱码?的解决方案

本文介绍了如何解决使用RedisTemplate时遇到的乱码问题,通过配置FastJsonRedisSerializer来确保数据在Redis中正常显示。同时,提供了RedisTemplate的配置代码示例,实现了Key、Value、HashKey和HashValue的序列化设置,以避免乱码并优化数据存储。
摘要由CSDN通过智能技术生成

关于RedisTemplate 乱码?的解决方案

1.本次解决乱码的情况 不管是中英文在RDM中都是乱码?
这个样子
在这里插入图片描述

提前说明一下 并不影响在Java中的正常获取 用RedisTemplate 获取到Java中就不乱吗 所以存的二进制 我在RDM中并看不到到底算不算乱码那 如果不需要在RDM这种地方看基本无感可以不用搞 躺平就完事
但是我测试注册 发验证码 邮箱还不能重复 我上哪搞那么多的邮箱去 控制台打印?啊这。。。好像也行但是我就是看乱码不爽啊 不然我RDM白安装了啊。。。。

2.正文开始

1.处理部分形式

import com.alibaba.fastjson.support.spring.GenericFastJsonRedisSerializer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.core.RedisTemplate;

@Configuration
public class RedisTemplateConfig {

		@Autowired
		private RedisTemplate redisTemplate;

		@Bean
		public RedisTemplate redisTemplateInit() {
			//设置序列化Key的实例化对象
			redisTemplate.setKeySerializer(new GenericFastJsonRedisSerializer());
			//设置序列化Value的实例化对象
			redisTemplate.setValueSerializer(new GenericFastJsonRedisSerializer());
			//设置序列化HashKey的实例化对象 不用hash结构这俩不用搞了
			redisTemplate.setHashKeySerializer(new GenericFastJsonRedisSerializer());
			//设置序列化Hash Value的实例化对象
			redisTemplate.setHashValueSerializer(new GenericFastJsonRedisSerializer());
			//对object 类型的序列化
			redisTemplate.setDefaultSerializer(new FastJsonRedisSerializer<>(Object.class));
			return redisTemplate;
			 //GenericFastJsonRedisSerializer 序列化器
		   // 不用fastJSON也可以用 springboot 自带的Jackson 的 GenericJackson2JsonRedisSerializer
		}


}

修改后
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值