TestRepository ***extends*** JpaRespotiroy<Test,Long>
JpaRepository是一个接口。为什么我们要扩展它而不像Java中那样实现它呢?据我所知,接口是实现的,而不是扩展的。
有人可以向我解释吗?
答案 0 :(得分:1)
我认为您的代码看起来像
interface TestRepository extends JpaRepository<Test, Long>
所以TestRepository是一个接口,并且接口可以扩展其他接口而不是实现接口。
TestRepository将在运行时基于SimpleJpaRepository从Spring Data JPA实现
答案 1 :(得分:0)
在Java中
class Test Extends Thread
public interface TestI extends Runtime
public class Test implements Runnable