본문 바로가기
프로그래밍 언어/Etc

[스프링] spring에서 org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported in spring 오류 해결방법

by 우림 2016. 8. 18.



org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported in spring

url을 호출하니 이런 오류가 났습니다.

POST 방식을 지원하지 않는다는 뜻인데요.





해당 url을 매핑하는 @RequestMapping을 확인하니,

RequestMethod.GET 이라고 돼 있어서 정말 POST 방식으로의 호출은 지원하지 않는군요.







RequestMethod.POST를 지원할 수 있도록 위와 같이 수정해 주시면 깔끔하게 해결됩니다.


댓글