gpt4 book ai didi

spring - PagingAndSortingRepository 无法解析

转载 作者:行者123 更新时间:2023-12-03 12:21:02 25 4
gpt4 key购买 nike

我正在尝试使用 PagingAndSortingRepository来自 Spring 数据 :

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

public interface StudentRepository extends JpaRepository<Student, Integer> {}
但我收到此错误:

org.springframework.data.repository.PagingAndSortingRepositorycan't be resolved


我的代码有什么问题,我该如何解决?

最佳答案

这个为我解决了问题

Gradle

// 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>

关于spring - PagingAndSortingRepository 无法解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45581212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com