Commit d66aab2e8348316e1eac5951de7ddd4dd47edb6b
1 parent
3c025a5a
剔除lettuce 解决轮播场景下的redis读写超时问题
Showing
1 changed file
with
14 additions
and
0 deletions
pom.xml
| ... | ... | @@ -60,6 +60,20 @@ |
| 60 | 60 | <dependency> |
| 61 | 61 | <groupId>org.springframework.boot</groupId> |
| 62 | 62 | <artifactId>spring-boot-starter-data-redis</artifactId> |
| 63 | + <exclusions> | |
| 64 | + <exclusion> | |
| 65 | + <groupId>redis.clients</groupId> | |
| 66 | + <artifactId>jedis</artifactId> | |
| 67 | + </exclusion> | |
| 68 | + <exclusion> | |
| 69 | + <groupId>io.lettuce</groupId> | |
| 70 | + <artifactId>lettuce-core</artifactId> | |
| 71 | + </exclusion> | |
| 72 | + </exclusions> | |
| 73 | + </dependency> | |
| 74 | + <dependency> | |
| 75 | + <groupId>org.apache.commons</groupId> | |
| 76 | + <artifactId>commons-pool2</artifactId> | |
| 63 | 77 | </dependency> |
| 64 | 78 | <dependency> |
| 65 | 79 | <groupId>org.springframework.boot</groupId> | ... | ... |