如何通过 REST Web 服务公开 Blob(图像)数据

发布于 2024-10-17 13:55:08 字数 168 浏览 10 评论 0原文

我将图像以 blob 形式存储在 MySql 数据库表中。我需要通过 REST Web 服务公开这些图像,并且想知道我的选择是什么。我看到的主要选项是读取数据库、创建图像并将其存储在文件系统上,然后在 REST 响应中发送图像的路径。这里还有其他想法吗?我想我将使用 RESTeasy 来实现 JAX-RS。感谢您的帮助!

I'm storing images in blob form in a MySql database table. I need to expose these images via a REST webservices and was wondering what my options are. The main option I see is to read the database, create the image and store it on the filesystem and send the path to the image in the REST response. Any other ideas here? I'm thinking I will use RESTeasy for my JAX-RS implementation. Thanks for the help!

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

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

发布评论

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

评论(1

平生欢 2024-10-24 13:55:08

您可以将图像解析为字节,然后通过 Web 服务以 JSON 形式发送这些字节。

You can parse your image into bytes and then can send those bytes in JSON form via web service.

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