如题,spring mvc直接提交Date类型参数会报错,400 bad request的错误。在controller里加上

@InitBinder
protected void initBinder(HttpServletRequest request,ServletRequestDataBinder binder) throws Exception {
  DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
  CustomDateEditor dateEditor = new CustomDateEditor(format, true);
  binder.registerCustomEditor(Date.class, dateEditor);
  super.initBinder(request, binder);
}

@InitBinder
public void initBinder(WebDataBinder binder) {
  SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
  dateFormat.setLenient(false);
  binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));//true:允许输入空值,false:不能为空值
}

可以解决这个问题。但是这个时候Date类型的参数是null的话,还是会报错。

采用另外一种方式则更好,为null也不会报错,就是把请求参数封装为一个vo类,在对应的类属性上加上注解,这样

@DateTimeFormat(iso = ISO.DATE_TIME, pattern = "w:yyyy")
private Date startTime;

或者

@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date lastLoginDate;

另外如果使用验证框架,方法参数这样写(@Valid XxxParam param, BindingResult binding) ,就能直接通过BindingResult得到验证结果了。

最新文章

  1. ascii、unicode、utf、gb等编码详解
  2. jQuery基础_3
  3. linux上创建ftp服务器下载文件///使用AWS服务器作为代理,下载sbt相关的包
  4. spring、springmvc、mybatis整合笔记
  5. js 跨浏览操作
  6. ZBX_NOTSUPPORTED: Item does not allow parameters.
  7. Dynamics CRM教程:图表的Top设置及导出修改和导入
  8. webpack配置之代码优化
  9. RoR - Expressing Database Relationships
  10. 如果你的ie内核浏览器总是缓冲数据的话
  11. 图解ByteBuffer
  12. pycharm中快捷键的使用
  13. 关于java弱引用
  14. python基础学习1-列表推导式和字典推导式
  15. iOS-ARC-环境下如何查看引用计数的变化
  16. iOS 真机测试错误“The application could not be verified”
  17. 2048总结 JavaScript+jQuery(取元素方便,.css,text方法)
  18. 链接href的多重使用
  19. Python - selenium_WebDriver 鼠标键盘事件
  20. 分区工具parted的详解及常用分区使用方法

热门文章

  1. Ext grid中单元格编辑,editor为combobox时用法
  2. Nginx图片防盗链的方式
  3. Concurrency and Application Design (二)
  4. Don't Panic! KRACK 没你想象的那么糟
  5. solr 最佳实践
  6. 关于mysql的表名/字段名/字段值是否区分大小写的问题
  7. 前端自动化工具 gulp
  8. Android开发之裁切(拍照+相冊)图像并设置头像小结
  9. fabric-ca安装
  10. java中 hashCode() 和 equals()