欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot redistemplate 写入redis后值前面有乱码

程序员文章站 2022-07-12 20:59:15
...

 

springboot redistemplate 写入redis后值前面有乱码

 

解决办法,千万不要设置  HashKeySerializer   HashValueSerializer,不然的话用别的序列化器写string数据的时候会多一些乱码

 

package com.lty.dispatch.conf;

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.JdkSerializationRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;


@Configuration
public class RedisConfig {

    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory connectionFactory) {
     
相关标签: java