CrudRepository 与 JpaRepository

时间:2021-07-08 13:22:21

标签: spring spring-boot spring-data-jpa

我正在学习 Spring Boot。在 DAO 接口中,我看到一些文档使用 CrudRepository,一些使用 JpaRepository,其他一些使用 Custom Generic 接口。

在这种情况下,我应该使用 CrudRepository、JpaRepository 还是自定义的。

这是一个界面示例

@Repository
public interface EmployeeRepository extends CrudRepository<Employee, Long> {  }

0 个答案:

没有答案
相关问题