spring-boot - 整合Reids集群

【spring-boot - 整合Reids集群】

1.引入依赖

        
            org.springframework.boot
            spring-boot-starter-web
        

        
        
            org.springframework.boot
            spring-boot-starter-data-redis
        

        
            org.apache.commons
            commons-pool2
        


2.配置application.properties

server.port=8080
server.servlet.encoding.charset=UTF-8
# 应用名称
spring.application.name=redis-sample
spring.jackson.date-format='yyyy-MM-dd HH:mm:ss'
spring.jackson.time-zone=GMT+8
# non_null - 字段值非空才返回该字段,否则返回体中不包含该字段
# always - 始终包含该属性,与该属性的值无关
spring.jackson.d

你可能感兴趣的:(redis,spring,boot,整合,集成)