[ERROR] 400 The server is unable or will not process the request due to some recognized problem as a client error. (eg bad request syntax, invalid request message framing, or unreliable request routing).

gyrud02·2022년 6월 28일
0

오류(ERROR)

목록 보기
26/27

400 Bad Request

The server is unable or will not process the request due to some recognized problem as a client error. (eg bad request syntax, invalid request message framing, or unreliable request routing).
  • 원인: JSP 파일에 FORM 태그와 VO의 데이터 타입이 맞지 않아서 생긴 오류다. 400번 오류가 생길 때에는 컨트롤러로 넘어가지 않는다.

  • 해결: contactDate가 Date형이었는데 form 태그 안에 input type="text" name="contactDate" text였기 때문에 String으로 수정 후 해결하였다.

profile
Back-End Engineer

0개의 댓글