关于Hibernate中Clob对象的问题
在 Hibernate 的早期版本中,它有静态 api Hibernate.createClob(String),它允许从 String 创建 Clob 对象。
既然这已被弃用,那么在 Hibernate 中将 String 存储为 Clob 的正确方法是什么?
我无法弄清楚持久性对象 (POJO) 的外观。
谢谢。
In the previous versions of Hibernate, it had the static api Hibernate.createClob(String), which allowed to create Clob object from String.
Now that this is deprecated, what is the proper way to store String as Clob in Hibernate?
I am having trouble figuring out how the Persistence Object (POJO) will look like.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JPA @Lob 注释:
请参阅 http://docs.jboss .org/hibernate/annotations/3.5/reference/en/html/entity.html 了解更多信息。
JPA @Lob annotation:
See http://docs.jboss.org/hibernate/annotations/3.5/reference/en/html/entity.html for more info.
我创建了一个关于如何将 Oracle XMLType 读入 Hibernate 的博客。 Clob 也需要类似的方法。 上写了详细信息
我已在http://rationalspring.wordpress.com
I had created a blog about how to read an Oracle XMLType into Hibernate. A Clob will also need a similar approach. I had written the details at
http://rationalspring.wordpress.com