我有此方法,但是我无法弄清楚我应该在邮递员中传递哪些参数来执行此方法。我以邮递员的表单数据发送了正文,content-Type为multipart / form-data。
后来我也必须发送文件,这就是为什么我使用表单数据。
SearchString在后端代码中为空。
@RequestMapping(value = "/calendar", method = RequestMethod.POST)
protected FareCalendarResponse getCalendar(
@RequestParam(value = "searchString", required = false) String searchString, HttpServletRequest httpRequest)
throws Exception {
CalendarRequest fareRequest = new CalenderRequest(searchString);
return FareCalendarHandler.builder().httpRequest(httpRequest).request(fareRequest).build().getResponse();
}
答案 0 :(得分:0)
答案 1 :(得分:0)
我认为它必须是public
内容类型可以是任何内容,请尝试application/json
您可以使用邮递员过帐到http://host:port/calendar?searchString=searchString