gpt4 book ai didi

java - JPA:冗余保存反模式

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:07:15 27 4
gpt4 key购买 nike

所以我有这个方法:

@Transactional
public void savePostTitle(Long postId, String title) {
Post post = postRepository.findOne(postId);
post.setTitle(title);
}

根据这个post :

The save method serves no purpose. Even if we remove it, Hibernate will still issue the UPDATE statement since the entity is managed and any state change is propagated as long as the currently running EntityManager is open.

确实发布了更新语句,但是如果我在没有 @Transactional 注释的情况下运行该方法:

public void savePostTitle(Long postId, String title) {
Post post = postRepository.findOne(postId);
post.setTitle(title);
}

Hibernate 不会发出更新语句,因此必须显式调用 postRepository.save(post);

在此特定场景中使用或不使用 @Transactional 有什么区别?

最佳答案

在标准配置中,持久性上下文的范围绑定(bind)到事务。

如果您没有通过注释定义的显式事务,则您的(不存在的)事务仅跨越对数据库的读取调用。之后,刚刚加载的实体不受管理。这意味着不会跟踪或保存对其所做的更改。刷新无济于事,因为没有跟踪任何更改。

关于java - JPA:冗余保存反模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53106556/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com