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

# always:始终包含该属性,与该属性的值无关; non_null:属性字段值为空则不会返回该字段,即value为null则

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