Jersey:返回包含图像文件和 JSON 字符串值的地图的响应
我正在使用 Jersey JAX-RS。 我想返回一个带有包含图像文件和 JSON 字符串值的地图的响应。
这是执行此操作的正确方法吗:
Map<String,Object> map = new HashMap........
GenericEntity entity = new GenericEntity<Map<String,Object>>(map) {};
return Response.ok(entity).build();
还是更好。我计划仅将 JAX-RS 与 Jersey 一起使用。
JResponse.ok(map).build();
我基于这篇文章:
http://aruld.info/ Handling-generified-collections-in-jersey-jax-rs/
我也不确定要为 @Produces 指定什么(计划将其省略)。
·蒂亚
维杰
I am using Jersey JAX-RS.
I want to return a Response with a Map containing Image Files and JSON String values.
Is this the right way to do this:
Map<String,Object> map = new HashMap........
GenericEntity entity = new GenericEntity<Map<String,Object>>(map) {};
return Response.ok(entity).build();
Or is this better.I plan to use JAX-RS with Jersey only.
JResponse.ok(map).build();
I am basing this on this article:
http://aruld.info/handling-generified-collections-in-jersey-jax-rs/
I am not sure what to specify for @Produces too(planning to leave it out).
TIA,
Vijay
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您最好生成多部分响应:
此示例取自 。
You better produce a multipart response:
This example was taken from there.