- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当使用 spring-data-jpa 和 hibernate 作为 jpa 提供者时,对象/实体生命周期是否与直接使用 hibernate 或由 hibernate 定义(或者可能是 jpa 规范本身)相同。
Hibernate 为实体定义了这些生命周期 - Transient、Persistent、Detached、Removed
。这些相同的生命周期是否也适用于使用 spring-data-jpa 时。如果是这样,Hibernate 提供的方法如何映射到 spring jpa crud 存储库的方法。
//below methods in hibernate move an entity to persistent state
save(e),
persist(e);
update(e);
saveOrUpdate(e);
lock(e);
merge(e);
和
//below methods in hibernate move an entity to detached state
detach(e);
evict(e);
最佳答案
对于问题的第一部分:
Spring Data JPA 只是在 JPA 之上提供了一些舒适的机制。持久性、映射和生命周期仍然由 JPA 或其实现管理,即您的情况下的 Hibernate。这意味着生命周期是相同的。
Spring Data JPAs方法与Hibernates/JPA方法的映射见下表。
CrudRepository.save*
对于新实体
EntityManager.persist
,
EntityManager.merge
否则
CrudRepository.delete*
EntityManager.remove
CrudRepository.findById
EntityManager.find*
JpaRepository.*flush
EntityManager.flush
JpaRepository.getById
EntityManager.getReference
在接口(interface)中预定义的其他查询方法或以其他方式使用各种类型的查询。
关于spring-boot - 使用 spring-data-jpa 和 hibernate 作为 jpa 提供程序时的对象/实体生命周期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65262120/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!