从 Spring 控制器返回 json 视图的步骤

发布于 2024-10-14 03:08:33 字数 94 浏览 2 评论 0原文

我的请求是基于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌吟 2024-10-21 03:08:33

如果您使用 @ResponseBody 注释并使用我上一个问题的答案中列出的方法之一,则可以让您的方法返回 JSON 字符串:

在Spring MVC,如何设置mime
使用时输入标题
@ResponseBody

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:

In Spring MVC, how can I set the mime
type header when using
@ResponseBody

挽手叙旧 2024-10-21 03:08:33

我是一个完全的新手,但我读过一些内容,当您没有为控制器指定任何逻辑视图映射并且从处理程序方法返回模型映射时(@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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文