Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我们连续更新任何值,版本列将更新 +1 值..,这是实际概念。
我的问题是,如果我们用相同的值更新对象..,那么版本列会增加 +1 还是会保持原样?
当 Hibernate 从数据库加载对象时,它会将对象的快照存储在内存中。刷新完成后,它将对象的状态与加载时存储的快照进行比较。如果状态没有改变,则该对象不是脏的,并且不会对此对象进行更新,因此也不会增加版本。