当我将@RequestBody
更改为@RequestParam
时,会抛出此异常。
抛出title' not exit
,但我在bean中定义了标题
@RequestMapping(value="post")
public void throwpost(@RequestParam(value="title") String title,@RequestParam(value="destination") String destination,
@RequestParam(value="time") String time,@RequestParam(value="plan") String plan){
System.out.println("dd");
System.out.println(title);
System.out.println(destination);
//System.out.println(threshold);
System.out.println(time);
System.out.println(plan);
//postservice.makepost(title,plan, destination,threshold, time);
}
答案 0 :(得分:0)
我的朋友@RequestParam
和@RequestBody
之间存在差异,您似乎想在@RequestBody
中使用@RequestParam
属性。
您可以搜索这些@RequestParam
,@RequestBody
和@PathVariable
之间的差异,以便更好地了解这三者的用法。反而是搜索会帮助你。