Framework/Spring Boot

[Error] Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported

잔망루피 2022. 9. 7. 22:45
Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported

Form을 submit으로 서버에 요청을 보내면서 발생한 에러다.

이전에는 AJAX로 요청을 보내서 @RequestBody가 컨트롤러에서 있었다.

하지만, submit으로 요청을 보내게 되면 @RequestBody가 필요없고 위와 같은 에러가 생긴다.

더이상 쓸모없는 @RequestBody를 없애면 에러가 해결된다.

 

 

 

👇 참고

https://stackoverflow.com/questions/33796218/content-type-application-x-www-form-urlencodedcharset-utf-8-not-supported-for

 

Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported for @RequestBody MultiValueMap

Based on the answer for problem with x-www-form-urlencoded with Spring @Controller I have written the below @Controller method @RequestMapping(value = "/{email}/authenticate", method = RequestMe...

stackoverflow.com

 

반응형