2017-08-09 49 views
2

[這裏輸入圖片描述] [1]這個問題有什麼問題?我該如何解決無法解析類型org.springframework.data.repository.PagingAndSortingRepository。它是從所需的.class文件中間接引用的

類型org.springframework.data.repository.PagingAndSortingRepository解決不了

這是我的代碼如下

package repository; 

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

import model.Student; 

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

} 
+1

Ant解決這個問題?即時通訊有相同的問題:( – rogger2016

回答

0

我解決了這個包括彈簧數據公地,其中包括PagingAndSortingRepository

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

enter image description here

相關問題