2020
09-27
09-27
Spring boot集成redis lettuce代码实例
springboot框架中已经集成了redis,在1.x.x的版本时默认使用的jedis客户端,现在是2.x.x版本默认使用的lettuce客户端引入依赖<!--springbootredis缓存引入--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId><version>2.0.4.RELEASE</version></dependency><!--redis依赖commons-pool这个依赖一定要添加--><dependency>...
继续阅读 >