1. 程式人生 > >spring boot redis pool配置版本問題

spring boot redis pool配置版本問題

spring boot 1.x版本redis配置

  redis:
        database: 0
        host: localhost
        port: 6379
        password: 
        pool:
          max-active: 8
          max-wait: -1
          max-idle: 8
          min-idle: 0
        timeout: 0

spring boot 2.x版本redis配置

 redis:
        database: 0
        host: localhost
        port: 6379
        password:
        jedis:
          pool:
            max-active: 8
            max-wait: -1
            max-idle: 8
            min-idle: 0
        timeout: 0