在 jaxRS 响应中将 URL 的内容作为文件返回
我是一个 REST 包装服务,当我调用后端服务时,在某些情况下,它们生成了一个文件,我可以使用特定 URL 检索该文件: https://localhost:1234/... 如何最有效地使用 javax.ws.core.Response 将该链接处的内容发送给调用者?我可能可以自己将 URL 读取到本地文件并以这种方式发送,但我想知道 REST 是否可以为我做到这一点。谢谢,
I am a REST wrapper service and when I call the back end service, in some cases they have generated a file which I can retrieve with a particular URL: https://localhost:1234/... How do I most efficiently use javax.ws.core.Response to send the contents at that link to the caller? I can probably read the URL myself to a local file and send it that way, but am wondering if REST will do that for me. Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您的后端 url 对您的客户端公开时,您可以发送重定向 301。
当不是时
when your back-end url is public to your client, you can send redirect 301.
When it's not