Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported
Form을 submit으로 서버에 요청을 보내면서 발생한 에러다.
이전에는 AJAX로 요청을 보내서 @RequestBody가 컨트롤러에서 있었다.
하지만, submit으로 요청을 보내게 되면 @RequestBody가 필요없고 위와 같은 에러가 생긴다.
더이상 쓸모없는 @RequestBody를 없애면 에러가 해결된다.
👇 참고
반응형
'Framework > Spring Boot' 카테고리의 다른 글
[Spring Security] rememberMe 설정 (0) | 2022.09.19 |
---|---|
ModelMapper 수동으로 필드명 매핑 설정 (0) | 2022.09.12 |
업로드 파일 사이즈 (0) | 2022.08.16 |
[Error] Could not write JSON: Java 8 date/time type `java.time.LocalDateTime` not supported by default: (0) | 2022.07.16 |
[Error] org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'enableRedisKeyspaceNotificationsInitializer' (0) | 2022.07.15 |