gpt4 book ai didi

java - 如何在 Spring 中发送 JSON 响应?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:51 26 4
gpt4 key购买 nike

我想在 spring 应用程序中从服务器返回一个 JSON 响应。以下是我的代码片段。

@RequestMapping(value="getCustomer.action", method = RequestMethod.GET)
public @ResponseBody Customer getValidCustomer(Model model) {
System.out.println("comes");
Customer customer2 = (Customer) customerService
.getCustomer("vvmnbv@jgfj.ghfjg");
System.out.println(customer2.getEmail());
return customer2;

}

但我在客户端遇到错误。

最佳答案

你需要:

  • 添加Jackson JSON Mapper到类路径
  • 添加<mvc:annotation-driven>到你的配置
  • 返回Map<Integer, String>

阅读: http://blog.safaribooksonline.com/2012/03/28/spring-mvc-tip-returning-json-from-a-spring-controller/

关于java - 如何在 Spring 中发送 JSON 响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18780415/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com