客户端可以从 URL 中的 Jersey 服务请求特定的响应 MIME 类型吗?
我有一个 Jersey REST 服务,它的端点可以根据 Accept 标头返回 application/xml 或 application/json。客户端应用程序当然可以设置此标头,并且一切都会按预期进行。
为了简化健全性检查和基于浏览器的测试,我正在寻找一种从 URL 指定类型的方法。据我了解,Rails 有类似的东西(只需将 .json 附加到资源中,它就会自动选择 application/json)。泽西岛有类似的东西吗?
I have a Jersey REST service which has endpoints that can return either application/xml or application/json depending on the Accept header. Client applications can certainly set this header and everything works as expected.
For simplicity of sanity checking and browser-based testing, I'm looking for a way to specify the type from the URL. It's my understanding that Rails has something like this (just append .json to the resource and it automatically selects application/json). Does Jersey have something similar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您可以通过设置 com.sun.jersey.config.property.MediaTypeMappings属性。
Yes. You can set extension to media type mappings in the init parameters of the jersey servlet by setting the com.sun.jersey.config.property.MediaTypeMappings property.