springboot集成redis

添加依赖

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

在 application.properties文件中配置redis

#配置redis
spring.redis.host=localhost
spring.redis.password=111111
spring.redis.port=6379

你可能感兴趣的:(springboot集成redis)