2
我知道這是一個簡單的。但找不到解決方案。如何在Spring控制器中獲取JSON數據?
我的jQuery的AJAX會,
var json = {"message":"Message123","time":"time123","name":"test123"}
data : JSON.stringify(json),
我的春天控制器會,
@RequestMapping(value = "chat.html", method=RequestMethod.GET)
public @ResponseBody String getChat() {
System.out.println("Entered in to the controller ");
String name == ???
String msg == ???
String time == ???
//Process the functionality using the msg,name,time
return "Json String";
}
我怎樣才能得到的名稱,消息,時間值。
希望我們的堆棧成員能幫助我。
可能的[解析JSON在Spring MVC使用JSON傑克遜]重複(http://stackoverflow.com/questions/6019562/parsing-json-in代碼-spring-mvc-using-jackson-json) – mthmulders
@mthmulders所以你在說'@ RequestBody'會解決我的問題。對吧? –
我在說你的問題已經被問過了,並且已經被徹底回答了。實際上,使用'@ RequestBody'是答案的一部分。 – mthmulders