Spring data required in sleep mode or not

I have one doubt regarding the implementation of spring data having basic knowledge of spring data. I understand JPA and Hibernate how this works. Hibernate provides a JPA implementation. My questions. Can we work alone with spring data to save data in mysql or do we need some kind of provider, for example, hibernate or toplink, etc. For a medium sized application.

+4
source share
1 answer

The structure is as follows:

Spring Data JPA
       |
      JPA
       |
   Hibernate

You need Hibernate as a JPA implementation, but from your point of view you should only see Spring Data JPA.

, , javax.persistence, JPA ( Hibernate), Hibernate EclipseLink - .

+8

Source: https://habr.com/ru/post/1613292/


All Articles