SpringBoot & SpringCache & Redis 整合

时间:2025-04-20 07:29:15
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="/POM/4.0.0" xmlns:xsi="http:///2001/XMLSchema-instance" xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0."> <modelVersion>4.0.0</modelVersion> <parent> <groupId></groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.0</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId></groupId> <artifactId>SpringCacheRedisDemo</artifactId> <version>1.0-SNAPSHOT</version> <properties> <>1.8</> </properties> <dependencies> <!--缓存接口--> <dependency> <groupId></groupId> <artifactId>lombok</artifactId> <version>1.18.20</version> </dependency> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId></groupId> <artifactId>commons-pool2</artifactId> <version>2.9.0</version> </dependency> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!--缓存管理器用来序列化和反序列化的--> <dependency> <groupId></groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId></groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>