融资项目——配置redis

一、 在maven中导入相关依赖。在springboot框架中,我们使用spring data redis

        
        
            org.springframework.boot
            spring-boot-starter-data-redis
        
        
        
            org.apache.commons
            commons-pool2
        

        
        
            com.fasterxml.jackson.core
            jackson-databind
        
        
            com.fasterxml.jackson.datatype
            jackson-datatype-jsr310
        

二、在配置文件中(spting节点下)对redis进行配置(service-core中的application.yml)。

spring:
    redis:
        host: 127.0.0.1
        port: 6379
        database: 0
        # 密码默认为空
        # password: 
        timeout: 3000ms #最大等待时间,超时则抛出异常,否则请求一直等待
        lettuce:
          pool:
            max-active: 20  #最大连接数,负值表示没有限制,默认8
            max-wait: -1    #最大阻塞等待时间,负值表示没限制,默认-1
            max-idle: 8     #最大空闲连接,默认8
            min-idle: 0     #最小空闲连接,默认0

你可能感兴趣的:(spring,boot,redis,java)