1. pom加入依赖
		<!--redis依赖-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-redis</artifactId>
		</dependency>
  1. application.yml 加入配置
spring:
  redis:
    database: 0
    timeout: 1000  # 连接超时时长(毫秒)
#    host: 192.168.99.100
#    port: 6001
    cluster:
      nodes:
        - 192.168.99.100:6001
        - 192.168.99.100:6002
        - 192.168.99.100:6003
        - 192.168.99.100:6004
        - 192.168.99.100:6005
        - 192.168.99.100:6006
    jedis:
      pool:
        max-total: 20
        max-active: 10  # 连接池最大连接数(使用负值表示没有限制)
        max-wait: -1ms      # 连接池最大阻塞等待时间(使用负值表示没有限制)
        max-idle: 10      # 连接池中的最大空闲连接
        min-idle: 5       # 连接池中的最小空闲连接
  1. 报错问题。
04-21 23:05