SpringBoot整合spring-boot-starter-data-redis时启动报错找不到的类文件

时间:2024-11-15 15:49:45
  • <?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.">
  • <parent>
  • <artifactId>carnellj</artifactId>
  • <groupId></groupId>
  • <version>1.0-SNAPSHOT</version>
  • </parent>
  • <modelVersion>4.0.0</modelVersion>
  • <artifactId>redis-cache</artifactId>
  • <dependencies>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-test</artifactId>
  • <scope>test</scope>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-boot-test</artifactId>
  • <scope>test</scope>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-data-redis</artifactId>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>jedis</artifactId>
  • <version>2.10.2</version>
  • <type>jar</type>
  • <scope>compile</scope>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>jackson-annotations</artifactId>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>jackson-core</artifactId>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>jackson-databind</artifactId>
  • </dependency>
  • </dependencies>
  • </project>