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.
我读到 Hibernate 不允许在 blob 属性上使用 Merge 功能。
我可以知道除了使用 .save 之外还有其他方法吗?
我假设您使用的是 3.x 分支,因为在 4.x 版本中这个问题已经解决。 您必须在合并后手动替换 blob,而不是保存
Object merged = session.merge(original); merged.setBlob(session.getLobHelper().createBlob(<use new data>)); session.save(merged);