码迷,mamicode.com
首页 > 编程语言 > 详细

springmvc 请求出现400错误(当传入的参数类型是Date时加上下面代码试试)

时间:2016-01-13 17:18:13      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

@InitBinder
 protected void initBinder(HttpServletRequest request,
   ServletRequestDataBinder binder) throws Exception {
  binder.registerCustomEditor(Date.class, new DatePropertyEditor(yourDateformat));
 }

 

springmvc 请求出现400错误(当传入的参数类型是Date时加上下面代码试试)

标签:

原文地址:http://www.cnblogs.com/SHMILYHP/p/5127470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!