java: 程序包org.springframework.data.redis.core不存在
时间: 2023-12-23 19:26:53 浏览: 186
spring-data-redis.jar包
根据提供的引用内容,程序包org.springframework.data.redis.core不存在可能是因为缺少redis组件的依赖。可以通过在pom.xml文件中添加以下依赖来解决该问题:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
此外,还需要确保项目中已经正确配置了redis的连接信息。
阅读全文