Programming/Spring
Request method 'POST' not supported 오류 해결
goakgoak
2024. 3. 21. 17:01
# 문제 상황
Controller method에 다음과 같이 POST 요청을 수신할 수 있도록 method를 명시하였으나 Request method 'POST' not supported 에러로그 확인됨
@RequestMapping(value = "requesturl", produces = {"application/xml; charset=utf-8"}, method = {RequestMethod.POST, RequestMethod.GET})
# 원인
return Dto클래스의 기본 생성자가 없어서 ,,
# 해결 방법
logback.xml 아래 설정 추가 후 디버깅
<logger name="org.springframework.web.servlet" level="DEBUG">
<appender-ref ref="CONSOLE"/>
</logger>