我是使用JPA的新手,我正在在线阅读教程,所有这些教程都是从JPARespository扩展而来的,如下所示
此页上
https://www.callicoder.com/spring-boot-jpa-hibernate-postgresql-restful-crud-api-example/
package com.example.postgresdemo.repository;
import com.example.postgresdemo.model.Answer;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface AnswerRepository extends JpaRepository<Answer, Long> {
List<Answer> findByQuestionId(Long questionId);
}
但是在我的项目中,Eclipse抱怨以下内容
The type JpaRepository<Property,Long> cannot be the superclass of PropertyRepository; a superclass must be a class
下面是我的课程
package realestate.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import realestate.model.Property;
import java.util.List;
@Repository
public class PropertyRepository extends JpaRepository<Property, Long> {
}
答案 0 :(得分:2)
JPA的存储库是接口。
在代码中,您声明了一个类并将其扩展到接口。
一个类可以实现一个接口。因此,请更改为以下界面。
@Repository
public class PropertyRepository extends JpaRepository<Property, Long> {
}
到
@Repository
public interface PropertyRepository extends JpaRepository<Property, Long> {
}