我从AngularJS POST发送json对象
(json['name']="Name";json['lastName']="LastNAme");
在Spring mvc Controller中我收到了这条消息
"name=Name&lastName=LastName"
我不知道此消息的类型,无论是JSON还是String以及如何解析为java对象。
答案 0 :(得分:0)
创建一个表示JSON对象的模型。
public class Person{
private String name;
private String lastname;
//...Setters + Getters + default constructor
}
然后在你的控制器处理程序中:
@Controller
//Mapping here
public class YourController{
@PostMapping
public void getPerson(@RequestBody Person person){
//process here
}
}