Hibernate注释图像存储
我正在使用 struts2 和 hibernate,我想知道如何使用 POJO 类中的 hibernate 注释来存储和检索数据库中的图像
I'm using struts2 and hibernate and I want to know how to store and retrieve images from database using hibernate annotations in the POJO class
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以
字节数组
格式在数据库中存储图像的最佳方法,就像您必须使用struts2文件上传实用程序上传图像并将其作为byte[]图像
传递给hibernate >;在您的映射中,您必须执行以下操作,例如
以下线程中很好地描述了如何使用注释
字节[]的正确休眠注释
Best way to store images in the database in in format of
Byte array
like you have to upload images using struts2 file upload utility and den pass it on to hibernate asbyte[] image
;in your mapping you have to do something like
How to use annotation for this is very well described in the following thread
proper hibernate annotation for byte[]
答案如下,
如果您不使用注释,请参阅此链接并获取完整参考
The answer is as following
refer to this link if you're not using annotations and for a complete reference
或者简单地:
Or simply: