LoginSignup
16
19

More than 5 years have passed since last update.

JpaRepository と CrudRepository の違いって何?

Posted at

SpringDataJPAの勉強中の疑問のをメモっておきます。

JpaRepositoryをextendsしている場合とCrudRepositoryをextendsしている場合がある。
公式のサンプルではCrudRepositoryを使っている。
どっち使えばいいのさ。

調べました!

両者の違い
JpaRepositoryはPagingAndSortingRepositoryをextendsしているため、PagingとSortingの機能を持っているようだ。
実際にJpaRepositoryクラスを見てみるとPagingAndSortingRepositoryをextendsし、PagingAndSortingRepositoryはCrudRepositoryをextendsしていた。

つまり、ページングもソートもしたい場合はJpaRepositoryを使えばいいってことですね。

参考↓
http://stackoverflow.com/questions/14014086/what-is-difference-between-crudrepository-and-jparepository-interfaces-in-spring

16
19
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
19