JSF、Hibernate 和服务 BLOB
我想在 JSF 应用程序中通过 hibernate3 提供在 MySQL 数据库中保存为 blob 的图像。我的意图是 /myapp/image/get.faces?id=x
将提供保存在数据库中 id x 的图像。如何实现这一目标?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
byte[]
的实体(映射为@Lob
)通过
id
。HttpServletResponse
这位同事 BalusC 写了一篇关于此类的好文章图像 servlet。如果您对 Hibernate 部分有疑问,请详细说明。
byte[]
(mapped as@Lob
) by
id
.HttpServletResponse
The fellow BalusC wrote a nice post about such an image servlet on his blog. If you have troubles with the Hibernate part, please elaborate.
我认为 RichFaces 对此有一些组件 - 就像它对几乎所有东西一样。但我推荐 servlet 方式,请参阅其他答案。
另外,请务必在 JSF 应用程序前面放置一些静态内容缓存 - 每次从数据库中提取它并不是一个好主意。
I think RichFaces has some component for this - like it has for almost anything. But I'd recommend the servlet way, see the other answer.
Plus, be sure to put some static content cache in front of your JSF app - pulling it from the DB every time is NOT a good idea.