无法解析org.springframework.data.repository.PagingAndSortingRepository类型。它是从所需的.class文件间接引用的

时间:2017-08-09 03:26:19

标签: spring-boot

[在此输入图片说明] [1]这个问题出了什么问题?我该怎么办?

org.springframework.data.repository.PagingAndSortingRepository类型无法解析

这是我的代码

package repository;

import org.springframework.data.jpa.repository.JpaRepository;

import model.Student;

public interface StudentRepository extends **JpaRepository**<Student, Integer>{

}

4 个答案:

答案 0 :(得分:4)

这个解决了我的问题

<强>摇篮

// https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.1.RELEASE'

<强>的Maven

<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa -->
<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-jpa</artifactId>
    <version>2.0.1.RELEASE</version>
</dependency>

答案 1 :(得分:3)

我解决了这个问题,包括包含PagingAndSortingRepository

的spring-data-commons
select '2am' as columnname, `2am` as value from hourchart 
union all 
select '4am', `4am` from hourchart 
union all 
select '6am', `6am` from hourchart;

enter image description here

答案 2 :(得分:0)

删除 ~.m2/org/springframework.data 文件夹并更新 maven 项目。

答案 3 :(得分:-1)

确保已安装jar。

 mvn clean dependency:tree

2)这对我做了什么: enter image description here