添加redis配置,将id缓存迁移由缓存移动到redis

This commit is contained in:
hzj
2024-11-04 16:25:43 +08:00
parent 401d2a4e97
commit 00beb8efa8
9 changed files with 496 additions and 36 deletions

View File

@@ -98,6 +98,22 @@
<artifactId>oracle-source</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.logging</groupId>
<artifactId>logging-parent</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>