首页 > 解决方案 > What is spring data jpa and which orm framework does it use?

问题描述

I am working on a project which does not use Hibernate but I have a doubt. Which orm framework it uses please tell me thanks in advance.

标签: javaspringhibernateormspring-data-jpa

解决方案


JPA 是规范,而不是实现。所以只有 JPA 不起作用。也许您的项目正在使用 spring-data-jpa。spring-data-jpa 依赖于休眠。

https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa/2.2.0.RELEASE <- 你可以看到哪些库与spring-data-jpa相关。hibernate-core 就是其中之一。


推荐阅读