自用RedisConfig的配置,更改key为string和value json的序列化,避免set乱的key

自用RedisConfig的配置,更改key为string和value json的序列化,避免set乱的key,使用StringRedisTemplate也可以解决,保证了redis set的值是正确的

@Configuration
public class RedisConfig {
    //更改key为string和value json的序列化,避免乱码
    @Bean
    public RedisTemplate<String,Object> redisTemplate(RedisConnectionFactory factory){
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(factory);

        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setValueSerializer(new Jackson2JsonRedisSerializer<Object>(Object.class));
        return  redisTemplate;
    }
}

与其对应的controller

package com.yase.build.controller;

import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;

@RestController
public class RedisController {
    //引入redis进行操作,因为实现了序列化,会导致key之前增加很多其他的东西,使用StringRedisTemplate
    @Resource
    private RedisTemplate redisTemplate;
//    @Resource
//    private StringRedisTemplate stringRedisTemplate;
    //获取值
    @GetMapping("/{key}")
    public Object get(@PathVariable String key){
        Object o = redisTemplate.opsForValue().get(key);
        return o;
    }
    @GetMapping("/{key}/{value}")
    public Object set(@PathVariable String key,@PathVariable String value){
        redisTemplate.opsForValue().set(key,value);
        return "ok";
    }

}

要在Redis中使用fastjson进行序列化配置,您需要按照以下步骤执行: 1. 添加fastjson依赖:将fastjson库添加到您的项目中,可以通过在Maven项目的pom.xml文件中添加以下依赖来完成: ```xml <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.76</version> </dependency> ``` 2. 创建FastJsonRedisSerializer类:创建一个实现了RedisSerializer接口的FastJsonRedisSerializer类。这个类将负责将Java对象序列化JSON字符串,并将JSON字符串反序列化回Java对象。 ```java import com.alibaba.fastjson.JSON; import org.springframework.data.redis.serializer.RedisSerializer;import org.springframework.data.redis.serializer.SerializationException; public class FastJsonRedisSerializer<T> implements RedisSerializer<T> { private Class<T> clazz; public FastJsonRedisSerializer(Class<T> clazz) { this.clazz = clazz; } @Override public byte[] serialize(T t) throws SerializationException { if (t == null) { return new byte[0]; } return JSON.toJSONBytes(t); } @Override public T deserialize(byte[] bytes) throws SerializationException { if (bytes == null || bytes.length <= 0) { return null; } return JSON.parseObject(bytes, clazz); } } ``` 3. 配置RedisTemplate:在您的配置文件中配置RedisTemplate,并将FastJsonRedisSerializer设置为Redis的默认序列化器。 ```java import com.alibaba.fastjson.support.spring.FastJsonRedisSerializer; 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.StringRedisSerializer; @Configuration public class RedisConfig { @Bean public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) { RedisTemplate<String, Object> template = new RedisTemplate<>(); template.setConnectionFactory(redisConnectionFactory); // 设置key序列化器 template.setKeySerializer(new StringRedisSerializer()); template.setHashKeySerializer(new StringRedisSerializer()); // 设置value序列化器 template.setValueSerializer(new FastJsonRedisSerializer<>(Object.class)); template.setHashValueSerializer(new FastJsonRedisSerializer<>(Object.class)); return template; } } ``` 通过以上步骤配置RedisTemplate后,您就可以在Spring Boot项目中使用fastjson进行Redis序列化了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值