[在此输入图片说明] [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>{
}
答案 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-commonsselect '2am' as columnname, `2am` as value from hourchart
union all
select '4am', `4am` from hourchart
union all
select '6am', `6am` from hourchart;
答案 2 :(得分:0)
删除 ~.m2/org/springframework.data 文件夹并更新 maven 项目。
答案 3 :(得分:-1)