无法找到媒体类型的 JAXBContext:application/octet-stream
我正在使用 RestEasy,当我输入 url http://localhost:8080/resteasy/xml
时,我希望在 Firefox 中看到“另存为...”选项。
@GET
@Path("/xml")
@Produces("application/octet-stream")
public List<FileDetail> getXmlContent() {
return findXml();
}
但是当我使用它时,我收到错误:
Unable to find JAXBContext for media type: application/octet-stream
出了什么问题?
感谢您的帮助。
I am working with RestEasy and when I type the url http://localhost:8080/resteasy/xml
I want to see a "Save As..." option in firefox.
@GET
@Path("/xml")
@Produces("application/octet-stream")
public List<FileDetail> getXmlContent() {
return findXml();
}
But when I use this, I get the error:
Unable to find JAXBContext for media type: application/octet-stream
What is wrong?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望浏览器中显示“另存为”对话框,您可以在响应中添加
Content-Disposition
标头If your want the 'Save as' dialog to appear in the browser, you can add the
Content-Disposition
-header in the response