试着调整你的@RequestMapping来接受JSON.
1
2
3
4
|
@RequestMapping ( value= "/save" ,
method=RequestMethod.POST,
consumes= "application/json" ) |
试着调整你的@RequestMapping来接受JSON.
1
2
3
4
|
@RequestMapping ( value= "/save" ,
method=RequestMethod.POST,
consumes= "application/json" ) |