[org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported] 오류 해결

728x90

[org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported]

 

form 을 통해 onsubmit으로 ajax를 사용한 비동기적 데이터 처리를 하던 도중 위와 같은 오류 발생

 

이유는 아래와 같이 form의 method타입에 post가 명시되어있어서 button을 통해 바로 submit이 되기 때문이다. 

따라서 아래 method를 지워줘야 함 (해결책)

<form id = 'login' method = 'post' onsubmit='return tryLogin();'>
	<input type="hidden" name="l" value="loginForm">

 

728x90