415ERROR & textarea默认光标从第一行第一列开始

来源:互联网 发布:淘宝认证企业店铺条件 编辑:程序博客网 时间:2024/06/02 01:41

<textarea  name="Comments" id="Comments" maxlength="10000"></textarea>

符合要求



<textarea  name="Comments" id="Comments" maxlength="10000">

</textarea>

不符合


还有415:org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded' not supported

form提交默认为: application/x-www-form-urlencoded'编码

springMvc 默认为json。

只需要去掉@RequestBody  

格式如下:

@RequestMapping(value = "/addcontact",        produces = MediaType.APPLICATION_JSON_VALUE,        consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE,        method = RequestMethod.POST)public @ResponseBody RegisterObj addContact(RegisterObj registerObj) {

1 0
原创粉丝点击