这是查到的Http400状态码的定义
400 错误请求 — 请求中有语法问题,或不能满足请求。
HTTP 400 - 请求无效。
表单传入的参数 userName:醉梦 userId: startDate: endDate: type:0
springMVc需要接受的参数为 String username, int userId, String startDate, String endDate, int type
userId为空,int userId不能接受空的userId,所以报错400。