我正在按照此处的指南在我的网站上设置存储库:http: //static.springsource.org/spring-data/data-jpa/docs/1.0.0.M1/reference/html/#repositories.introduction
我有点困惑,为什么在第 1.4.1 节中他们突然扩展了JpaRepository
……这是一个 JPA 类还是他们写的东西?我试图在我的应用程序中做同样的事情,但它没有工作,它不知道 JpaRepository 是什么,尽管已加载。
public interface UserRepository extends JpaRepository<User, Long>, UserRepositoryCustom {
// Declare query methods here
}