반응형

Message: org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported

해당 오류는 url요청에 대해서 GET으로 받지 않는다는 오류로

컨트롤러에서 RequestMappin에서 POST형태로 전송받겠다고 명시한 경우 (method = RequestMethod.POST)

jsp에서 form전송시에 <form method="post"> 라고 명시해 주어야한다.

반응형

+ Recent posts