springboot接受表单400错误
Posted ming_szu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot接受表单400错误相关的知识,希望对你有一定的参考价值。
主要原因是封装的类型与表单传入的字段类型无法匹配
controller接受post方法,将字段封装成user,因此表单传入的类型必须完全匹配User中的字段类型
@RequestMapping(value="/reg",method=RequestMethod.POST) public String reg(Model model,User user){ ... }
以上是关于springboot接受表单400错误的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
400错误代码,当使用RestTemplate进行Rest API时。