码迷,mamicode.com
首页 > Web开发 > 详细

jsp 跳转controller页面 报400

时间:2018-11-06 01:03:20      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:页面   实体类   new   gis   public   std   .class   edit   jsp   

跳转报400,很有可能是jsp页面传递的参数和controller接收的参数类型不一致,这里的参数一致是指 和实体类中保持一致。

当jsp页面中出现date字段时,在controller中需要实现Converter接口进行处理,否则会报400异常。

在controller中如下:

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

jsp 跳转controller页面 报400

标签:页面   实体类   new   gis   public   std   .class   edit   jsp   

原文地址:https://www.cnblogs.com/doudou-123/p/9912384.html

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