gpt4 book ai didi

java - 如何使用Spring RestTemplate处理json类型请求和xml类型请求

转载 作者:太空宇宙 更新时间:2023-11-04 13:54:59 24 4
gpt4 key购买 nike

有时我会收到 json(来自其余客户端)格式的请求,有时会收到 xml(来自使用 jsp View 的表单)格式的请求。当我编写如下所示的 Controller 类时,它将不允许请求 xml(来自使用 jsp View 的表单)。

这是我的问题。 Controller 类应该允许这两种类型的请求。

@RequestMapping(value = "/home", method = RequestMethod.POST)
public String getCustomer(@RequestBody HomeRequest homeRequestequest,
HttpServletRequest request) {

String response = homeService.getCustomerResponse(homeRequestequest, request);
return response;
}

请帮忙解决这个问题。我使用的是3.2.4.RELEASE版本。

最佳答案

正如jbarrueta在评论中所说,你需要在Controller中声明2个方法,例如

getCustomerJsongetCustomerXML

第一个方法的映射是:

@RequestMapping(value = "/home", method = RequestMethod.POST, consumes = "application/json")

第二种方法的映射是:

@RequestMapping(value = "/home", method = RequestMethod.POST, consumes = "application/xml")

关于java - 如何使用Spring RestTemplate处理json类型请求和xml类型请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29912392/

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