springboot 報錯 Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported

開始 controller 方法寫的是   app

    @RequestMapping( value = "/add", method = RequestMethod.POST )ui

    public String add( @RequestBody Map<String, Object> params ) {  url

報錯 Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported.net

改爲code

    @RequestMapping( value = "/add", method = RequestMethod.POST )orm

    public String add( @RequestParam Map<String, Object> params ) {blog

就不報錯了。
---------------------
做者:guile
來源:CSDN
原文:https://blog.csdn.net/beguile/article/details/80460957
版權聲明:本文爲博主原創文章,轉載請附上博文連接!io

相關文章
相關標籤/搜索