• SSM搭项目报错:HTTP Status 400 – Bad Request


    具体报错如下:

    Type Status Report

    Description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).

    在用表单提交数据的时候,出现如上所示的错误。根据描述可以看出事客户端数据提交时发生的错误,可能是请求的语法或者路径错误。

    最后发现,表单提交的时候,日期类型是按照字符串提交的,而服务器用的Date类型来接,所以会出错,在控制器里添加代码:

        @InitBinder
        public void init(WebDataBinder webDataBinder){
            //指定什么格式,前台传什么格式
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
            simpleDateFormat.setLenient(false);
            webDataBinder.registerCustomEditor(Date.class,new CustomDateEditor(simpleDateFormat,false));
        }
        @InitBinder
        public void init(WebDataBinder webDataBinder){
            //指定什么格式,前台传什么格式
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
            simpleDateFormat.setLenient(false);
            webDataBinder.registerCustomEditor(Date.class,new CustomDateEditor(simpleDateFormat,false));
        }

    由此便可解决问题。

    如果提交的表单时,如果某些数据没有填,而后台做出了“接收”的行为,也会报如上错误。

  • 相关阅读:
    [UOJ#391]GEGEGE
    [GOODBYE WUXU][UOJ]
    codeforce 1110F
    [atcoder][abc123D]
    [atcoder][agc001]
    Luogu1070-道路游戏-动态规划
    Luogu 2577[ZJOI2005]午餐
    Luogu 1169 [ZJOI2007]棋盘制作
    Luogu 1273 有线电视网
    Luogu 2279 [HNOI2003]消防局的设立
  • 原文地址:https://www.cnblogs.com/phdeblog/p/10529773.html
Copyright © 2020-2023  润新知