jsp 跳转controller页面 报400
Posted 呼丿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp 跳转controller页面 报400相关的知识,希望对你有一定的参考价值。
跳转报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的主要内容,如果未能解决你的问题,请参考以下文章