springMVC controller中方法接收参数问题,怎么接收json对象

如题所述

第1个回答  2017-10-27
可以通过@RequestBody注解来实现
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@RequestMapping("/")
@ResponseBody
public JsonDto someFunction(@RequestBody Dto dto) {
return null;
}
第2个回答  2017-10-27
第三十五回 玄德南漳逢隐沦 单福新野遇英主第三十六回 玄德用计袭樊城 元直走马荐诸葛
相似回答