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를 없애면 에러가 해결된다.
👇 참고
반응형