Spring报错:org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported
,具体解决办法如下:
@PostMapping( "some/request/path" )
public void someControllerMethod( @RequestParam Map<String, String> body ) {
//work with Map
}
参数前加@RequestParam。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容