SpringMVC下,提交表单报400错:
- description The request sent by the client was syntactically incorrect.
根据网上的总结,可能是因为如下几个问题引起的
1.参数指定问题
如果Controller中定义了参数,而表单内却没有定义该字段
- @SuppressWarnings("deprecation")
- @RequestMapping("/hello.do")
- public String hello(HttpServletRequest request,HttpServletResponse response,
- @RequestParam(value="userName") String user
- ){
- request.setAttribute("user", user);
- return "hello";
- }
这里,表单内必须提供一个userName的属性!
不想指定的话,你也可以定义这个属性的默认值defaultValue="":
- @SuppressWarnings("deprecation")
- @RequestMapping("/hello.do")
- public String hello(HttpServletRequest request,HttpServletResponse response,
- @RequestParam(value="userName",defaultValue="佚名") String user
- ){
- request.setAttribute("user", user);
- return "hello";
- }
也可以指定该参数是非必须的required=false:
- @SuppressWarnings("deprecation")
- @RequestMapping("/hello.do")
- public String hello(HttpServletRequest request,HttpServletResponse response,
- @RequestParam(value="userName",required=false) String user
- ){
- request.setAttribute("user", user);
- return "hello";
- }
2.上传问题
上传文件大小超出了Spring上传的限制
- <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
- <!-- 设置上传文件的最大尺寸1024字节=1K,这里是10K -->
- <property name="maxUploadSize">
- <value>10240</value>
- </property>
- <property name="defaultEncoding">
- <value>UTF-8</value>
- </property>
- </bean>
我们工程里面是这个问题引起的,但是我实际示例中发现超过大小是直接报错的。
3.时间转换问题
也有网友说是因为时间转换引起的,而我实际操作中发现报错是:
- The server encountered an internal error that prevented it from fulfilling this request
这里也顺便提一下,假如你的Controller要一个时间对象,代码如下:
- @SuppressWarnings("deprecation")
- @RequestMapping("/hello.do")
- public String hello(HttpServletRequest request,HttpServletResponse response,
- @RequestParam(value="userName",defaultValue="佚名") String user,
- Date dateTest
- ){
- request.setAttribute("user", user);
- System.out.println(dateTest.toLocaleString());
- return "hello";
- }
而网页上实际给的是
- <input type="text" name="dateTest" value="2015-06-07">
这里需要在Controller增加一个转换器
- @InitBinder
- public void initBinder(WebDataBinder binder) {
- SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
- dateFormat.setLenient(false);
- binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));
- }
http://cuisuqiang.iteye.com/blog/2054234
1、提交表单数据类型与model不匹配
2、方法参数顺序不正确
3.Article的属性和你的form提交中的数据类型不 匹配
4 对象类型与model类型不一致
5 model类型不能为private,应为protected/public
相关推荐
键值对中的键(key)必须用双引号包围,否则后端可能会解析失败,并返回400 Bad Request错误。错误的格式或者类型不匹配也会导致解析错误。例如,如果传入的是字符串"step1",而后端尝试将其作为Integer类型接收,就...
当JSON解析失败时,Spring MVC会返回一个400 Bad Request响应。你可以通过全局异常处理器(`@ControllerAdvice` + `@ExceptionHandler`)来定制错误响应。 5. **验证** 为了确保请求参数的有效性,我们可以使用...
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(e.getMessage()); } } ``` 这样,我们就实现了使用Apache POI在Spring MVC中处理Excel 2007文件的功能。在实际应用中,可以进一步优化,例如添加错误...
return ResponseEntity.badRequest().body(result.getAllErrors()); } // ... } ``` 在这个例子中,如果用户提交的数据不符合验证规则,SpringMVC会自动捕获并处理异常,返回包含错误信息的响应。 总结,...
nested exception is com.sun.jersey.api.client.UniformInterfaceException: PUT http://localhost:8090/picServer/uploads/QQ截图20200220003029.png returned a response status of 400 Bad Request type ...
return ResponseEntity.badRequest().body("文件上传失败:" + e.getMessage()); } } else { return ResponseEntity.badRequest().body("请选择文件"); } } ``` 为了实现完整的文件上传功能,前端和后端的配合...
- **400 Bad Request**:如果JSON数据格式不正确或Controller方法参数不匹配,服务器可能会返回400错误。检查JSON字符串的格式和Java模型类是否对应。 - **415 Unsupported Media Type**:这通常是因为`Content-...
response.setStatus(HttpServletResponse.SC_BAD_REQUEST); return "error"; } } else { response.setStatus(HttpServletResponse.SC_BAD_REQUEST); return "error"; } return "success"; } } ``` 在处理...
然而,如果路径变量的值不是一个有效的整数,如`http://localhost:8080/test/getUser02/a`,那么Spring MVC会尝试将`a`转换为整数,导致`NumberFormatException`,并返回一个400 Bad Request的错误。 使用正则...
@ResponseStatus(HttpStatus.BAD_REQUEST) public String processUnauthenticatedException(NativeWebRequest request, Exception e) { logger.error(e.getMessage()); return "viewName"; // 返回一个逻辑视图...
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(ex.getMessage()); } ``` 7. **文件存储**: 一旦文件被接受,你需要将文件保存到服务器的某个位置。Spring MVC提供了一些选项,如`...
return new ResponseEntity(map, headers, HttpStatus.BAD_REQUEST); } } ``` 这个方式的异常处理由 HandlerExceptionResolver 的默认实现类 HandlerExceptionResolverComposite 处理,因此也只能捕获 @Controller...
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("该用户名已存在"); } else { return ResponseEntity.ok("用户名可用"); } } ``` 前端部分,我们可以使用JavaScript或jQuery来发送Ajax请求。当...
- **自动映射异常**:Spring MVC自动将特定异常映射为HTTP状态码,如HttpStatus.BAD_REQUEST(400)。 - **使用@ResponseStatus**:自定义异常类上添加@ResponseStatus注解,将异常映射到特定HTTP状态码。 - **...