Spring + hibernate versus Spring Data JPA: Are they different?

前端 未结 4 918
既然无缘
既然无缘 2021-01-31 02:10

Although not novice, I am trying to learn spring framework (again!) in order to be sure that I really understand this. I have got fair idea on core Spring (DI). Now, I am focusi

4条回答
  •  一生所求
    2021-01-31 02:45

    Spring Data JPA is not a JPA provider. It is a library/framework that adds an extra layer of abstraction on the top of our JPA provider (like Hibernate).

    So you can't use Spring Data without a JPA provider like Hibernate, EclipseLink, etc.

提交回复
热议问题