SpringMVC提交数据遭遇基础类型和日期类型报400错误解决方法
使用SpringMVC开发的时候,页面如果有日期格式的数据,后台接受也是java.util.Date,则报告400错误 。下面是解决方案的演示示例:
这个是实体类,里面createDate就是java.util.Date类型
1 import java.util.Date;
2
3 public class User {
4
5 private int userId;
6 private String userName;
7 private Date createDate;
8
9 public User() {}
10
11 public User(int userId, String userName, Date createDate) {
12 super();
13 this.userId = userId;
14 this.userName = userName;
15 this.createDate = createDate;
16 }
17
18 public User(String userName, Date createDate) {
19 super();
20 this.userName = userName;
21 this.createDate = createDate;
22 }
23
24 public int getUserId() {
25 return userId;
26 }
27
28 public void setUserId(int userId) {
29 this.userId = userId;
30 }
31
32 public String getUserName() {
33 return userName;
34 }
35
36 public void setUserName(String userName) {
37 this.userName = userName;
38 }
39
40 public Date getCreateDate() {
41 return createDate;
42 }
43
44 public void setCreateDate(Date createDate) {
45 this.createDate = createDate;
46 }
47
48 @Override
49 public String toString() {
50 return "User [createDate=" + createDate + ", userId=" + userId
51 + ", userName=" + userName + "]";
52 }
53 }
页面代码
1 <form action="regUser" method="post">
2 userName:<input type="text" name="userName"/><br>
3 createDate:<input type="text" name="createDate"/><br>
4 double类型:<input type="text" name="dd"/><br>
5 <input type="submit" value="注册">
6 </form>
因为对于原生基本类型的form表单绑定,会出错。需要指定具体的类型编辑器。用法如下:首先在BaseController中增加方法initBinder,并使用注解@InitBinder标注,那么spring mvc在绑定表单之前,都会先注册这些编辑器。剩下的控制器都继承该类。CustomDateEditor spring自己已经提供了。代码如下:
1 import java.text.SimpleDateFormat;
2 import java.util.Date;
3
4 import org.springframework.beans.propertyeditors.CustomDateEditor;
5 import org.springframework.stereotype.Controller;
6 import org.springframework.web.bind.WebDataBinder;
7 import org.springframework.web.bind.annotation.InitBinder;
8
9 import sun.beans.editors.DoubleEditor;
10 import sun.beans.editors.FloatEditor;
11 import sun.beans.editors.IntEditor;
12 import sun.beans.editors.LongEditor;
13
14 @Controller
15 public class BaseController {
16
17 @InitBinder
18 public void initBinder(WebDataBinder binder) {
19
20 binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true));
21 binder.registerCustomEditor(int.class, new IntEditor());
22 binder.registerCustomEditor(long.class, new LongEditor());
23 binder.registerCustomEditor(double.class, new DoubleEditor());
24 binder.registerCustomEditor(float.class, new FloatEditor());
25 }
26
27
28 }
上面的代码不仅仅有日期格式的编辑器,还有基础类型的编辑器,这样就解决了SpringMVC中controller方法接受参数的时候,基础类型报错的问题了。
下面是测试用代码,继承BaseController之后就可以直接运行了。接受的参数有实体类和基础类型。
1 import org.springframework.stereotype.Controller;
2 import org.springframework.web.bind.annotation.RequestMapping;
3
4 import com.kickstarter.entity.User;
5
6 @Controller("userController")
7 public class UserController extends BaseController{
8
9 @RequestMapping(value="regUser")
10 public String dateTest(User user , double dd){
11
12 System.out.println( user.toString() );
13 System.out.println( dd );
14 return "index";
15 }
16 }
以上,问题解决。然后我们切换第二种方式,删除 BaseController 这个类,直接在User实体类中的 createDate字段上加上注解 , 注意第10行代码:
1 import java.util.Date;
2
3 import org.springframework.format.annotation.DateTimeFormat;
4
5 public class User {
6
7 private int userId;
8 private String userName;
9
10 @DateTimeFormat(pattern="yyyy-MM-dd")
11 private Date createDate;
12
13 public User() {}
14
15 public User(int userId, String userName, Date createDate) {
16 super();
17 this.userId = userId;
18 this.userName = userName;
19 this.createDate = createDate;
20 }
21
22 public User(String userName, Date createDate) {
23 super();
24 this.userName = userName;
25 this.createDate = createDate;
26 }
27
28 public int getUserId() {
29 return userId;
30 }
31
32 public void setUserId(int userId) {
33 this.userId = userId;
34 }
35
36 public String getUserName() {
37 return userName;
38 }
39
40 public void setUserName(String userName) {
41 this.userName = userName;
42 }
43
44 public Date getCreateDate() {
45 return createDate;
46 }
47
48 public void setCreateDate(Date createDate) {
49 this.createDate = createDate;
50 }
51
52 @Override
53 public String toString() {
54 return "User [createDate=" + createDate + ", userId=" + userId
55 + ", userName=" + userName + "]";
56 }
57 }
这样也可以解决日期格式报400问题。而且不管页面是否有数据都可以正常使用。
转自 SpringMVC + Spring + MyBatis 学习笔记:提交数据遭遇基础类型和日期类型报400错误解决方法
SpringMVC提交数据遭遇基础类型和日期类型报400错误解决方法的更多相关文章
- SpringMVC + Spring + MyBatis 学习笔记:提交数据遭遇基础类型和日期类型报400错误解决方法
系统:WIN8.1 数据库:Oracle 11GR2 开发工具:MyEclipse 8.6 框架:Spring3.2.9.SpringMVC3.2.9.MyBatis3.2.8 使用SpringMVC ...
- SpringMVC:提交日期类型报400错误解决方法
方法1:可以使用@ControllerAdvice增强Controller @ControllerAdvice public class BaseControllerAdvice { // 初始化绑定 ...
- ajax post提交form表单 报400错误 解决方法
昨天晚上做项目遇到了一个奇怪的问题,我用ajax提交一个form表单,后台Java方法用的是一个实体接,但是他根本不进方法体中,直接给我一个400的错误,一开始我以为是我路径的问题(尴尬),结果直接访 ...
- 如何自定义JSTL标签与SpringMVC 标签的属性中套JSTL标签报错的解决方法
如何自定义JSTL标签 1.创建一个类,从SimpleTagSupport继承 A) 通过继承可以获得当前JSP页面上的对象,如JspContext I) 实际上可以强转为PageContext II ...
- VS2010升级VS2013后,出现没有定义类型“PowerPacks.ShapeContainer”错误解决方法
开发说明: http://msdn.microsoft.com/zh-tw/library/microsoft.visualbasic.powerpacks.aspx Microsoft.Visual ...
- 提交代码出现 Push to origin/master was rejected 错误解决方法
转至博客:http://www.xtyos.cn/archives/qt-1-index 为什么会出现这样的问题 一般发生在 GitHub 或 码云 刚刚创建仓库第一次pull的时候,两个仓库的差别非 ...
- NGINX不允许向静态文件提交POST方式的请求,否则报405错误(apache中没有出现)
telnet *.*.*.* 80POST /map/navigation/2011winter/jsn/jsn_20120723_pack/pvf.jsnHTTP/1.1Host:*.*.*.* ( ...
- Spring MVC的各种参数绑定方式(请求参数用基础类型和包装类型的区别)(转)
1.基本数据类型(以int为例,其他类似): Controller代码: @RequestMapping("saysth.do") public void test(int cou ...
- SpringMVC在使用Jackson2时关于日期类型格式化的问题
SpringMVC在使用Jackson2时关于日期类型格式化的问题 如果无效,那么使用 @DateTimeFormat(pattern = "yyyy-MM-dd")
随机推荐
- Mysql服务器SQL模式 (官方精译)
MySQL服务器可以在不同的SQL模式下运行,并且可以根据sql_mode系统变量的值对不同的客户端应用不同的模式.DBA可以设置全局SQL模式以匹配站点服务器操作需求,并且每个应用程序可以将其会话S ...
- PCA, SVD以及代码示例
本文是对PCA和SVD学习的整理笔记,为了避免很多重复内容的工作,我会在介绍概念的时候引用其他童鞋的工作和内容,具体来源我会标记在参考资料中. 一.PCA (Principle component a ...
- maven项目部署对Oracle jar包的处理
1.正常情况下,我们是访问不到ojdbc.jar的,需要建立一个本地仓. 2.先找到自己的Oracle中ojdbc.jar将其放入到 C:\Users\Administrator 这个目录下,然 ...
- 【Struts2的执行流程,这个博主写的很详细】
http://blog.csdn.net/wjw0130/article/details/46371847
- Scala并发编程react、loop代码实战具体解释
演示样例代码及凝视: //scala并发编程中的react和loop,共同特点: //通过线程存用的方式让性能有所提升. //Actor本身的运行,被actor子系统管理的时候,会有一个或者多个远程的 ...
- WPF使用RoutedCommand自己定义命令
主要代码例如以下所看到的: /// <summary> /// 声明并定义命令. /// </summary> RoutedCommand ClearCommand = new ...
- Struts2学习笔记整理(二)
这里是重点. Action接口 struts2 的Action可以是POJO 为了让用户开发的Action更加规范struts2提供了一个Action接口 ActionSupport基类 Struts ...
- SourceTree 基本介绍
Git的服务器端: 最出名的是GitHub,但是不能创建私有仓库,创建私有得需要Money Bitbucket:可以创建私有数据库,但是速度太慢,太消磨激情了 如果既想创建私有又想要激情,那只能自己搭 ...
- 在Azure Container Service创建Kubernetes(k8s)群集运行ASP.NET Core跨平台应用程序
引子 在此前的一篇文章中,我介绍了如何在本地docker环境中运行ASP.NET Core跨平台应用程序(http://www.cnblogs.com/chenxizhang/p/7148657.ht ...
- 什么是Dubbo
1. Dubbo是什么? Dubbo是: 一款分布式服务框架 高性能和透明化的RPC远程服务调用方案 SOA服务治理方案 每天为2千多个服务提供大于30亿次访问量支持,并被广泛应用于阿里巴巴集团的各成 ...