如何通过 REST Web 服务公开 Blob(图像)数据
我将图像以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将图像解析为字节,然后通过 Web 服务以 JSON 形式发送这些字节。
You can parse your image into bytes and then can send those bytes in JSON form via web service.