使用 Hibernate 获取 BLOB LAZY 的最佳方法

发布于 2025-01-05 05:36:06 字数 285 浏览 0 评论 0原文

我尝试找到获取 blob 的最佳方法:

  • 我发现了 javassit 检测

  • 或实现 FieldHandled

  • 使用“假”一对一- 一个映射而不是属性。从现有类中删除 LOB 字段,创建引用相同表、相同主键并且仅将必要的 LOB 字段作为属性的新类。将映射指定为一对一、fetch="select"、lazy="true"。只要您的父对象仍在会话中,您就应该得到您想要的内容。

还有其他解决办法吗。 最好的方法是什么?

i try to find the best way to fetch a blob:

  • I found javassit instrumentation

  • Or implementing FieldHandled

  • Use "fake" one-to-one mappings instead of properties. Remove the LOB fields from your existig class, create new classes referring to the same table, same primary key, and only the necessary LOB fields as properties. Specify the mappings as one-to-one, fetch="select", lazy="true". So long as your parent object is still in your session, you should get exactly what you want.

Is there any other solution.
What is the best aproach?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷…雨湿花 2025-01-12 05:36:06

为什么不使用标准的@Lob注释,这里是文档。它的标准和便携式

Why not use the standard @Lob annotation, here is docs. Its standard and portable

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文