개발자의 끄적끄적

[kotlin] Request method 'POST' not supported 에러 해결 방법 본문

개발/kotlin

[kotlin] Request method 'POST' not supported 에러 해결 방법

효벨 2021. 2. 18. 02:00
728x90
반응형

[kotlin] Request method 'POST' not supported 에러 해결 방법

 

 

kotlin springboot 프로젝트 개발할때,

 

form 을 전송하는 로직을 작성하던중

 

아래와 같은 오류가 나는 경우가 있습니다!

 

Request method 'POST' not supported

 

그럴때는 페이지에 있는 form method 는 post 인데

 

컨트롤러는 get 으로 되어 있는 경우가 대부분일 껍니다.

 

kotlin springboot 기준으로는

 

@GetMapping -> @PostMapping 로 변경해주면 됩니다!

 

참고들 하세요!

반응형
Comments