Spring Boot如何整合Redis

Spring Boot是目前非常流行的Java Web开发框架,Redis是非关系型数据库的一种,以键值对的形式存储。Spring对Redis的支持是通过Spring Data Redis来实现的,给我们提供了RedisTemplate和StringRedisTemplate两种模板来操作数据。Spring Boot框架也提供了对Redis的支持,下面我们来讲一下Spring Boot框架整合Redis的步骤。

操作方式

  • 01

    Spring Boot整合Redis我们需要添加依靠的jar包,spring-boot-starter-data-redis中包含spring和redis相关的jar包,jedis作为redis的客户端也需要添加到工程中,Spring Boot的版本信息在父pom中已指定,子模块中的spring相关的jar包无需别的指定。

    org.springframework.boot
    spring-boot-starter-data-redis


    redis.clients
    jedis
    3.0.0-m1

  • 02

    Spring Boot会按照application.properties中的设置装备摆设对Redis的属性进行主动设置装备摆设,并注入到RedisProperties类中。在application.properties设置装备摆设文件中这些属性都是以spring.redis为前缀的,值得注重的是在Spring Boot 1.5.x版本中默认的Redis客户端是jedis,是以在设置装备摆设文件中无需指定,如下图所示。

  • 03

    Spring Boot 1.5.x版本的整合设置装备摆设网上可以搜刮年夜量的文章,然而Spring Boot 2.x版本的整合伙料却很是少,甚至供给的设置装备摆设不克不及正常利用,是以本文本家儿要讲解Spring Boot 2.x整合Redis以及Redis的利用环境。spring-boot 2.x版本有jedis和lettuce两种客户端,是以我们必需要去指定利用哪一种客户端,两个客户端的设置装备摆设如下图所示,本文利用的是Jedis客户端毗连池,具体的设置装备摆设如下。
    # Redis数据库索引(默认为0)
    spring.redis.database=0
    # Redis办事器地址
    spring.redis.host=127.0.0.1

    # Redis办事器毗连端口
    spring.redis.port=6379
    # Redis办事器毗连密码(默认为空)
    spring.redis.password=xylx1.t!@#
    # 设置装备摆设jedis毗连池
    # 毗连池最年夜毗连数(利用负值暗示没有限制)
    spring.redis.jedis.pool.max-active=8
    # 毗连池最年夜梗阻期待时候(利用负值暗示没有限制)
    spring.redis.jedis.pool.max-wait=-1ms
    # 毗连池中的最年夜余暇毗连
    spring.redis.jedis.pool.max-idle=8
    # 毗连池中的最小余暇毗连
    spring.redis.jedis.pool.min-idle=0
    # 毗连超不时间(毫秒)
    spring.redis.timeout=5000ms
    由设置装备摆设我们可以看到spring-boot 2.x版本时候设置需要加单元ms,因为参数的类型为Duration。别的spring.redis.timeout尽量不要设置装备摆设0,不然可能会呈现io.lettuce.core.RedisCommandTimeoutException: Command timed out超时错误。

  • 04

    设置装备摆设文件编纂完当作后,我们起头编写代码实现Redis数据的存储和读取。我们建立一个RedisUtil东西类,该类利用@Component注解暗示交由Spring办理,StringRedisTemplate是Spring供给的,可以利用@Autowired注解直接注入,接下来便可以书写存和取的代码了。
    @Component
    public class RedisUtil {

    @Autowired
    private StringRedisTemplate redisTemplate;

    /**
    * 存字符串
    * @param key 缓存键
    * @param value 缓存值
    * @param expireTime 过时时候(s)
    */
    public void setString(String key, String value, int expireTime){
    ValueOperations ops = redisTemplate.opsForValue();
    if (expireTime != 0) {
    ops.set(key, value, expireTime, TimeUnit.SECONDS);
    } else {
    ops.set(key,value);
    }
    }

    /**
    * 取字符串
    * @param key 缓存键
    * @return 缓存值
    */
    public String getString(String key){
    ValueOperations ops = this.redisTemplate.opsForValue();
    return ops.get(key);
    }

  • 05

    接下来我们编写Controller层代码去挪用RedisUtil东西类,实现数据的存储和读取,代码比力简单可以参考下图。若想验证Redis是否可用,还需要编写启动类,如下图所示。

  • 06

    由上图可看到我们编写了一个post请求用于存储字符串,get请求用于掏出字符串。启动类经由过程main方式启动应用,接下来我们利用postman去模拟浏览器挪用post和get请求,由下图可以看到Redis存储的数据当作功被掏出。

  • 07

    接下来我们介绍Jedis,这是一个封装了Redis的客户端,在Spring Boot整合Redis的根本上,可以供给更简单的API操作。是以我们需要设置装备摆设JedisPool的Bean,代码如下,此中@Configuration注解表白这是一个设置装备摆设类,我们在该类中注入RedisProperties,而且利用@Bean注解指定JedisPool。
    @Configuration
    public class RedisConfiguration {

    @Autowired
    private RedisProperties properties;

    @Bean
    public JedisPool getJedisPool(){
    JedisPoolConfig config = new JedisPoolConfig();
    config.setMaxIdle(properties.getJedis().getPool().getMaxIdle());
    config.setMaxTotal(properties.getJedis().getPool().getMaxActive());
    config.setMaxWaitMillis(properties.getJedis().getPool().getMaxWait().toMillis());
    JedisPool pool = new JedisPool(config,properties.getHost(),
    properties.getPort(),100,
    properties.getPassword(), properties.getDatabase());
    return pool;
    }
    }

  • 08

    接下来我们编纂JedisUtil东西类,经由过程SpringBoot容器的@Component注解来主动建立,而且注入JedisPool,利用jedisPool.getResource()方式来获取Jedis,并最终实现操作redis数据库,其代码如下。
    @Component
    public class JedisUtil {

    @Autowired
    JedisPool jedisPool;

    //获取key的value值
    public String get(String key) {
    Jedis jedis = jedisPool.getResource();
    String str = "";
    try {
    str = jedis.get(key);
    } finally {
    try {
    jedis.close();
    } catch (Exception e) {
    e.printStackTrace();
    }
    }
    return str;
    }

    public String set(String key, String value) {
    Jedis jedis = jedisPool.getResource();
    String str = "";
    try {
    str = jedis.set(key, value);
    } finally {
    try {
    jedis.close();
    } catch (Exception e) {
    e.printStackTrace();
    }
    }
    return str;
    }

    }

  • 09

    JedisUtil东西类编写完当作后,我们点窜之前的RedisController,并注入JedisUtil,代码如下图所示。然后再用postman别离挪用post和get接口,我们可以看到当作功取到了新的key的value值。

  • End

出格提醒

在Spring Boot整合Redis前本机需安装Redis,别的可以利用RedisDesktopManager这个Redis这个桌面办理东西查看Redis中的数据。

  • 发表于 2018-11-27 00:00
  • 阅读 ( 783 )
  • 分类:电脑网络

相关问题

0 条评论

请先 登录 后评论