博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springboot(四)设置Redis和Spring的整合
阅读量:5240 次
发布时间:2019-06-14

本文共 1269 字,大约阅读时间需要 4 分钟。

设置RedisSpring的整合

Spring Boot中提供了RedisTempplate的操作我们暂时不做学习先按照我们之前的实现来完成

 

代码

 

import java.util.ArrayList;

import java.util.List;

 

import org.springframework.beans.factory.annotation.Value;

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;

import org.springframework.context.annotation.PropertySource;

 

import redis.clients.jedis.JedisPoolConfig;

import redis.clients.jedis.JedisShardInfo;

import redis.clients.jedis.ShardedJedisPool;

 

@Configuration

@PropertySource(value = "classpath:redis.properties")

public class RedisSpringConfig {

 

    @Value("${redis.maxTotal}")

    private Integer redisMaxTotal;

 

    @Value("${redis.node1.host}")

    private String redisNode1Host;

 

    @Value("${redis.node1.port}")

    private Integer redisNode1Port;

 

    private JedisPoolConfig jedisPoolConfig() {

        JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();

        jedisPoolConfig.setMaxTotal(redisMaxTotal);

        return jedisPoolConfig;

    }

 

    @Bean

    public ShardedJedisPool shardedJedisPool() {

        List<JedisShardInfo> jedisShardInfos = new ArrayList<JedisShardInfo>();

        jedisShardInfos.add(new JedisShardInfo(redisNode1Host, redisNode1Port));

        return new ShardedJedisPool(jedisPoolConfig(), jedisShardInfos);

    }

}

转载于:https://www.cnblogs.com/chengjiao/p/9633604.html

你可能感兴趣的文章
Open Associated Perspective?
查看>>
oracle字符集设置
查看>>
Java页面中文编码要转换两次encodeURI
查看>>
C# Image和Byte[]互相转换
查看>>
Jmeter组件认识
查看>>
C#反射(转载)
查看>>
SQL 课程
查看>>
排序算法
查看>>
url的反向解析
查看>>
如何成为一名优秀的前端工程师
查看>>
《TCP-IP详解卷1》中BGP部分的笔记
查看>>
安装Xamarin.Android几个经典介面
查看>>
03-树1 树的同构
查看>>
标准C程序设计七---101
查看>>
GDB实战
查看>>
内存探究记录
查看>>
6. Find Peak Element
查看>>
Excel 导出 按钮
查看>>
线段树
查看>>
pandas的concat方法
查看>>