spring集成redis的lettuce连接pom文件配置

以前集成的spring-redis,今天记录一下


<!-- spring-redis -->
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-redis -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.8.0.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/biz.paluch.redis/lettuce -->
<dependency>
    <groupId>biz.paluch.redis</groupId>
    <artifactId>lettuce</artifactId>
    <version>4.2.2.Final</version>
</dependency>

猜你喜欢

转载自blog.csdn.net/wangdonghello/article/details/78120173