使用 Hibernate 获取 BLOB LAZY 的最佳方法
我尝试找到获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用标准的@Lob注释,这里是文档。它的标准和便携式
Why not use the standard @Lob annotation, here is docs. Its standard and portable