从 Spring 控制器返回 json 视图的步骤
我的请求是基于 ajax 的,并且正在调用 spring 多操作控制器方法之一,我能够使用 Gson 库创建 json 文件。有什么方法可以从控制器方法返回 json 视图。
My request is ajax based and am calling to one of spring multiaction controller method,I able to create json file using Gson library. Is any way to return json view from controller method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 @ResponseBody 注释并使用我上一个问题的答案中列出的方法之一,则可以让您的方法返回 JSON 字符串:
You can just let your method return the JSON String if you use the
@ResponseBody
annotation and use one of the methods listed in the answers to my previous question:我是一个完全的新手,但我读过一些内容,当您没有为控制器指定任何逻辑视图映射并且从处理程序方法返回模型映射时(
@Controller
,@ RequestMapping
)它应该将模型对象转换为 json 并返回它。I'm a total newbie but I've read some where that when you dont specify any logical view mapping for a controller and you return a model map from a handler method (
@Controller
,@RequestMapping
) it should transform the model object to json and return it.