为什么我们扩展 JpaRepository 接口而不实现它
Why do we extend JpaRepository Interface and not implements it
TestRepository ***extends*** JpaRespotiroy<Test,Long>
JpaRepository 是一个接口。为什么我们要扩展它而不是像我们在 Java 中所知道的那样实现它?据我所知,接口是实现的,而不是扩展的。
有人可以给我解释一下吗?
我假设你的代码看起来像
interface TestRepository extends JpaRepository<Test, Long>
所以 TestRepository 是一个接口,接口可以扩展其他接口而不是实现接口。
TestRepository 将在运行时基于 SimpleJpaRepository
从 Spring Data JPA 实现
在Java
- Class 扩展 Class
class Test Extends Thread
- interface 扩展接口
public interface TestI extends Runtime
- class 实现接口
public class Test implements Runnable
TestRepository ***extends*** JpaRespotiroy<Test,Long>
JpaRepository 是一个接口。为什么我们要扩展它而不是像我们在 Java 中所知道的那样实现它?据我所知,接口是实现的,而不是扩展的。
有人可以给我解释一下吗?
我假设你的代码看起来像
interface TestRepository extends JpaRepository<Test, Long>
所以 TestRepository 是一个接口,接口可以扩展其他接口而不是实现接口。
TestRepository 将在运行时基于 SimpleJpaRepository
从 Spring Data JPA 实现在Java
- Class 扩展 Class
class Test Extends Thread
- interface 扩展接口
public interface TestI extends Runtime
- class 实现接口
public class Test implements Runnable