springboot+redis 配置

springboot+redis 配置

依赖

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

   <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-pool2</artifactId>
   </dependency>

application.yml 配置

    spring:
        redis:
            lettuce:
            pool:
                max-wait: 100
                max-active: 200
                max-idle: 10
                min-idle: -1
            host: 192.168.245.200
            port: 6379
            password:
            timeout: 1000

redis配置

RedisConfig.java

    import com.alibaba.fastjson.parser.ParserConfig;
    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.StringRedisSerializer;

    /**
    * redis配置类
    * Created by Andy.W.Zhang on 2019/3/7.
    */
    @Configuration
    public class RedisConfig {

        @Bean
        public RedisTemplate<String, Object> redisTemplate(LettuceConnectionFactory factory) {
            RedisTemplate<String, Object> template = new RedisTemplate<String, Object>();
            template.setConnectionFactory(factory);
            //小范围白名单
            ParserConfig.getGlobalInstance().addAccept("com.andy.framdemo.");
            StringRedisSerializer stringRedisSerializer = new StringRedisSerializer();
            FastJsonRedisSerializer<Object> fastJsonRedisSerializer = new FastJsonRedisSerializer<>(Object.class);
            // key采用String的序列化方式
            template.setKeySerializer(stringRedisSerializer);
            // hash的key也采用String的序列化方式
            template.setHashKeySerializer(stringRedisSerializer);
            // value序列化方式采用FastJSON的序列化方式
            template.setValueSerializer(fastJsonRedisSerializer);
            // hash的value序列化方式采用FastJSON的序列化方式
            template.setHashValueSerializer(fastJsonRedisSerializer);
            template.afterPropertiesSet();
            return template;
        }
    }

FastJsonRedisSerializer.java

    import com.alibaba.fastjson.JSON;
    import com.alibaba.fastjson.serializer.SerializerFeature;
    import org.springframework.data.redis.serializer.RedisSerializer;
    import org.springframework.data.redis.serializer.SerializationException;

    import java.nio.charset.Charset;

    public class FastJsonRedisSerializer<T> implements RedisSerializer<T> {

        public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");

        private Class<T> clazz;

        public FastJsonRedisSerializer(Class<T> clazz) {
            super();
            this.clazz = clazz;
        }

        @Override
        public byte[] serialize(T t) throws SerializationException {
            if (t == null) {
                return new byte[0];
            }
            return JSON.toJSONString(t, SerializerFeature.WriteClassName,SerializerFeature.WriteNullStringAsEmpty,SerializerFeature.WriteMapNullValue,SerializerFeature.WriteNullListAsEmpty).getBytes(DEFAULT_CHARSET);
        }

        @Override
        public T deserialize(byte[] bytes) throws SerializationException {
            if (bytes == null || bytes.length <= 0) {
                return null;
            }
            String str = new String(bytes, DEFAULT_CHARSET);
            return (T) JSON.parseObject(str, clazz);
        }

    }

使用

    @Autowired
    private RedisTemplate<String,Object> redisTemplate;
首先,你需要在 Spring Boot 项目中添加 Redis 的依赖,可以使用以下 Maven 依赖: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> ``` 接着,在 application.properties 或 application.yml 文件中添加 Redis配置: ```yaml # Redis 主节点配置 spring.redis.host=127.0.0.1 spring.redis.port=6379 # Redis 从节点配置 spring.redis.cluster.nodes=192.168.1.1:6379,192.168.1.2:6379 spring.redis.cluster.master=master ``` 以上配置是一个 Redis 主节点和两个从节点的示例,其中: - `spring.redis.host` 和 `spring.redis.port` 是主节点的地址和端口。 - `spring.redis.cluster.nodes` 是从节点的地址和端口列表,多个节点使用英文逗号分隔。 - `spring.redis.cluster.master` 是主节点的名称,可以在 Redis 配置文件中设置。 最后,你需要使用 RedisTemplate 或者 StringRedisTemplate 类来操作 Redis。在 Spring Boot 中,你可以通过注入 RedisTemplate 或者 StringRedisTemplate 类来使用 Redis。例如: ```java @Autowired private RedisTemplate<String, Object> redisTemplate; public void set(String key, Object value) { redisTemplate.opsForValue().set(key, value); } public Object get(String key) { return redisTemplate.opsForValue().get(key); } ``` 以上代码中,我们注入了 RedisTemplate 类,并使用其 `opsForValue` 方法来操作 Redis 中的数据。 注意,如果你使用的是 Redis 主从复制模式,你在写入数据时应该使用主节点,而在读取数据时可以使用主节点或从节点。如果你使用的是 Redis 集群模式,Spring Boot 会自动将读取操作负载均衡到不同的节点上。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值