JSF、Hibernate 和服务 BLOB

发布于 2024-09-06 19:56:19 字数 137 浏览 2 评论 0 原文

我想在 JSF 应用程序中通过 hibernate3 提供在 MySQL 数据库中保存为 blob 的图像。我的意图是 /myapp/image/get.faces?id=x 将提供保存在数据库中 id x 的图像。如何实现这一目标?

I want to serve an image saved as a blob in a MySQL Database through hibernate3 in a JSF application. My intention is that /myapp/image/get.faces?id=x will serve the image saved in the database with id x. How to achieve this?

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

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

发布评论

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

评论(2

握住你手 2024-09-13 19:56:19

我的意图是 /myapp/image/get.faces?id=x 将提供保存在数据库中 ID 为 x 的图像。

  • 将此 URL 映射到 servlet。
  • 从 servlet 中,检索持有 byte[] 的实体(映射为 @Lob
    )通过id
  • 将图像流式传输到 HttpServletResponse

这位同事 BalusC 写了一篇关于此类的好文章图像 servlet。如果您对 Hibernate 部分有疑问,请详细说明。

My intention is that /myapp/image/get.faces?id=x will serve the image saved in the database with id x.

  • Map this URL to a servlet.
  • From the servlet, retrieve an Entity holding a byte[] (mapped as @Lob
    ) by id.
  • Stream the image to the 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.

习惯成性 2024-09-13 19:56:19

我认为 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.

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