forezp / blog-comments

3 stars 0 forks source link

Spring Boot教程第9篇:整合Redis - 方志朋的博客 #89

Open forezp opened 5 years ago

forezp commented 5 years ago

https://www.fangzhipeng.com/springboot/2017/05/09/sb9-redis.html

这篇文章主要介绍springboot整合redis,至于没有接触过redis的同学可以看下这篇文章:5分钟带你入门Redis

funson86 commented 5 years ago

2.0的配置需要修改

spring.redis.host=localhost spring.redis.port=6379

spring.redis.password=

spring.redis.database=1 spring.redis.jedis.pool.max-active=8 spring.redis.jedis.pool.max-wait=-1 spring.redis.jedis.pool.max-idle=500 spring.redis.jedis.pool.min-idle=0 spring.redis.timeout=500

apetoo commented 5 years ago

基于代码的spring2.x redis配置: https://blog.csdn.net/m0_37709455/article/details/90812316

yangjunguang commented 5 years ago

单元测试过不去呀。。。 后面发现pom文件里面spring-boot版本2.1.6就测试不过去。 改成和博主一样的1.5.2版本就可以。