Springboot集成redis

pom.xml

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-data-redisartifactId>
        dependency>

application.yml

spring:
  #redis配置
  redis:
  #连接redis的方式使用jedis,类似于关系型数据库中的jdbc
    jedis:
      pool:
      # 一些常用配置最大空闲连接数量等
        max-idle: 8
        min-idle: 0
        max-active: 8
        max-wait: -1
    # redis的ip
    host: ip
    # redis默认端口是6379
    port: 6379
    # redis中有0-15共16个数据库,指定操作的数据库
    database: 0
    #超时时间
    timeout: 3000
    # 连接redis的密码,默认是没有的,实际开发需要设置(要记住)
    password: ""

你可能感兴趣的:(Springboot,Java)