spring-boot-starter-redis主要是通过配置RedisConnectionFactory中的相关参数去实现连接redis service。RedisConnectionFactory是一个接口,有如下4个具体的实现类,我们通常使用的是JedisConnectionFactory。

在spring boot的配置文件中redis的基本配置如下:

# Redis服务器地址
spring.redis.host=192.168.0.58
# Redis服务器连接端口
spring.redis.port=6379  
# Redis服务器连接密码(默认为空,如果redis服务端配置文件开启了requirepass 密码,此处就应该填写相应的配置密码)
spring.redis.password=  
# 连接超时时间(毫秒)
spring.redis.timeout=0

上边这4项是在JedisConnectionFactory类中的基本配置项,里边其实还包含了一些比如连接池,集群,主从,哨兵等的配置,这里先简单介绍下连接池(JedisPoolConfig),需要了解其它配置了可以看下源码。GenericObjectPoolConfig是JedisPoolConfig的父类,主要提供了maxTotal、maxIdle、maxIdle共三个参数的配置,其中还设置了默认的参数。

# 连接池最大连接数(使用负值表示没有限制,对应maxTotal)

spring.redis.pool.max-active=8

# 连接池中的最大空闲连接

spring.redis.pool.max-idle=8

# 连接池中的最小空闲连接

spring.redis.pool.min-idle=0

配置文件配置好后,还需要建立一个redis的配置类,主要用来配置key和value的序列化及加载配置文件中的相关参数

如果你只需要使用基本的redis配置,那么使用如下配置类即可,spring boot会自动扫描redis的基本配置,但是有一项要注意那就是password,如果你在配置文件中设置了password,那么就必须在配置类中手工注入JedisConnectionFactory中,否则会在启动过程中报NOAUTH Authentication required.;:

  1.  
    @Configuration
  2.  
    @EnableCaching
  3.  
    public class RedisConfig extends CachingConfigurerSupport{
  4.  
     
  5.  
    @Bean
  6.  
    public KeyGenerator keyGenerator() {
  7.  
    return new KeyGenerator() {
  8.  
     
  9.  
    public Object generate(Object target, Method method, Object... params) {
  10.  
    StringBuilder sb = new StringBuilder();
  11.  
                    sb.append(target.getClass().getName());
  12.  
                    sb.append("_").append(method.getName());
  13.  
                    for (Object obj : params) {
  14.  
                        sb.append("_").append(obj.toString());
  15.  
                    }
  16.  
                    return sb.toString();
  17.  
    }
  18.  
    };
  19.  
    }
  20.  
     
  21.  
    @SuppressWarnings("rawtypes")
  22.  
    @Bean
  23.  
    public CacheManager cacheManager(RedisTemplate redisTemplate) {
  24.  
    RedisCacheManager rcm = new RedisCacheManager(redisTemplate);
  25.  
    //设置缓存过期时间
  26.  
    //rcm.setDefaultExpiration(60);//秒
  27.  
    return rcm;
  28.  
    }
  29.  
     
  30.  
     
  31.  
    @Bean
  32.  
    public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory factory) {
  33.  
    StringRedisTemplate template = new StringRedisTemplate(factory);
  34.  
    @SuppressWarnings({ "rawtypes", "unchecked" })
  35.  
    Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
  36.  
    ObjectMapper om = new ObjectMapper();
  37.  
    om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
  38.  
    om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
  39.  
    jackson2JsonRedisSerializer.setObjectMapper(om);
  40.  
    template.setValueSerializer(jackson2JsonRedisSerializer);
  41.  
    template.afterPropertiesSet();
  42.  
    JedisConnectionFactory jc = (JedisConnectionFactory) factory;
  43.  
    System.out.println(jc.getHostName());
  44.  
    return template;
  45.  
    }
  46.  
     
  47.  
    }

如果你还配置了如连接池之类的参数,在上边配置类中加入:

  1.  
    @Bean
  2.  
    public JedisConnectionFactory redisConnectionFactory() {
  3.  
    JedisConnectionFactory factory = new JedisConnectionFactory();
  4.  
    factory.setHostName(host);
  5.  
    factory.setPort(port);
  6.  
    factory.setPassword(password);
  7.  
    factory.setTimeout(timeout); //设置连接超时时间
  8.  
    return factory;
  9.  
    }
使用factory进行set你所配置的值即可。

附带解释一点就是在配置类中注入配置文件中的属性方案有多种,如需了解可参考博客:

点击打开链接

StringRedisTemplate与RedisTemplate使用时的注意事项:
1、StringRedisTemplate是RedisTemplate的唯一子类
2、StringRedisTemplate默认采用的key序列化方式为setKeySerializer(stringSerializer);此时在使用Spring的缓存注解如@Cacheable的key属性设置值时,就需
  1.  
    要注意如果参数类型为Long那么会出不能进行String类型转换异常。
  2.  
    3、RedisTemplate默认使用的序列化方式为JdkSerializationRedisSerializer,它就没有上边的问题。因为它的序列化方法为serialize(Object object)

spring-boot-starter-redis配置详解的更多相关文章

  1. spring boot application properties配置详解

    # =================================================================== # COMMON SPRING BOOT PROPERTIE ...

  2. Spring Boot整合Mybatis配置详解

    首先,你得有个Spring Boot项目. 平时开发常用的repository包在mybatis里被替换成了mapper. 配置: 1.引入依赖: <dependency> <gro ...

  3. (转)Spring boot——logback.xml 配置详解(四)<filter>

    文章转载自:http://aub.iteye.com/blog/1101260,在此对作者的辛苦表示感谢! 1 filter的使用 <filter>: Logback的过滤器基于三值逻辑( ...

  4. (转)Spring boot——logback.xml 配置详解(二)

    文章转载自:http://aub.iteye.com/blog/1101260,在此对作者的辛苦表示感谢! 1 根节点<configuration>包含的属性 scan: 当此属性设置为t ...

  5. Spring boot——logback.xml 配置详解(四)<filter>

    阅读目录 1 filter的使用 2 常用的过滤器 文章转载自:http://aub.iteye.com/blog/1101260,在此对作者的辛苦表示感谢! 回到顶部 1 filter的使用 < ...

  6. Spring boot——logback.xml 配置详解(二)

    阅读目录 1 根节点包含的属性 2 根节点的子节点 文章转载自:http://aub.iteye.com/blog/1101260,在此对作者的辛苦表示感谢! 回到顶部 1 根节点<config ...

  7. (转)Spring boot——logback.xml 配置详解(三)<appender>

    文章转载自:http://aub.iteye.com/blog/1101260,在此对作者的辛苦表示感谢! 1 appender <appender>是<configuration& ...

  8. Spring boot——logback.xml 配置详解(三)<appender>

    阅读目录 1 appender 2  encoder 文章转载自:http://aub.iteye.com/blog/1101260,在此对作者的辛苦表示感谢! 回到顶部 1 appender < ...

  9. Spring Boot Actuator监控使用详解

    在企业级应用中,学习了如何进行SpringBoot应用的功能开发,以及如何写单元测试.集成测试等还是不够的.在实际的软件开发中还需要:应用程序的监控和管理.SpringBoot的Actuator模块实 ...

  10. Spring Boot 之使用 Json 详解

    Spring Boot 之使用 Json 详解 简介 Spring Boot 支持的 Json 库 Spring Web 中的序列化.反序列化 指定类的 Json 序列化.反序列化 @JsonTest ...

随机推荐

  1. oss上传和下载的笔记

    <<<<<<<<<对oss操作,上传文件>>>>>>>>>>>>>& ...

  2. 利用 Docker 搭建单机的 Cloudera CDH 以及使用实践

    想用 CDH 大礼包,于是先在 Mac 上和 Centos7.4 上分别搞个了单机的测试用.其实操作的流和使用到的命令差不多就一并说了: 首先前往官方下载包: https://www.cloudera ...

  3. js auto hover button & html5 button autofocus

    js auto hover button & html5 button autofocus input // html 5 <input name="myinput" ...

  4. IntelliJ IDEA详情

    详情请参考http://www.phperz.com/article/15/0923/159043.html

  5. 思维导图,UML图,程序流程图制作从入门到精通

    工具: https://www.processon.com/ 第一 用例图 第二 时序图 第三 流程图

  6. css 優先級

    !impoetant:1000 行間樣式 id:100 類選擇器.屬性選擇器和偽類:10 元素及偽元素:1 通配選擇器:0 相同優先級的樣式,後來居上. 當超過256種的時候,瀏覽器會不遵守以上優先級 ...

  7. 待解决ava.lang.OutOfMemoryError: PermGen space at java.lang.ClassLoader.defineClass1(Native Method)

    java.lang.OutOfMemoryError: PermGen space at java.lang.ClassLoader.defineClass1(Native Method) at ja ...

  8. 学习 Spring (六) 自动装配

    Spring入门篇 学习笔记 No: (默认)不做任何操作 byName: 根据属性名自动装配.此选项将检查容器并根据名字查找与属性完全一致的 bean,并将其与属性自动装配 byType: 如果容器 ...

  9. Thread的其他属性方法

    from threading import Thread,currentThread,active_count import time def task(): print('%s is running ...

  10. 了解C#中的HashSet与示例

    在C#中引入HashSet 在.NET框架中,有几个类可用于执行这些操作.一些课程如下: 列表 字典 哈希集 队列 集合 在C#编程中,像ArrayList,List这样的集合,只需添加其中的值,而不 ...