HTTP Status 405 – Method Not Allowed Type Status Report Message Request method 'GET' not supported Description The method received in the request-line is known by the origin server but not supported by the target resource. |
URL을 입력하여 웹서비스를 호출하면 다음과 같은 오류가 발생한다.
원인 해결방법은 간단하다.
페이지 호출을 위해서 URL에 GET 방식으로 모든 도메인 주소를 작성하였지만, 호출해주는 메소드는 POST로 명시적인 지정이 되어 있기 때문이다.
1. @RequestMapping(value = "GetPost", method = RequestMethod.POST)
2. @RequestMapping(value = "GetPost", method = RequestMethod.GET)
public void GetPost(HttpServletRequest request, HttpServletResponse response) throws Exception {
}
현재 1번과 같이 RequestMapping이 선언되어 있을 것이다.
method 의 RequestMethod 부분을 POST에서 GET으로 바꿔준다.
그리고 다시 URL을 호출해본다.
'Stack Overflow > 스프링' 카테고리의 다른 글
[스프링] 자바스크립트 콜백(JS Callback)을 이용해서 비동기 순서 제어하는 방법 (446) | 2022.03.07 |
---|---|
[스프링] 레거시파일 - 크롬에서 파일 다운로드 시 jsp 확장자 파일이 내려받아지는 경우 (254) | 2022.02.25 |
[스프링] Spring REST API 데이터 JSON 송수신 가능하도록 간단하게 구현, 생성하기 (추가로 LIST 작업) (6) | 2022.02.23 |
[스프링] Internal Server Error 예외 오류가 났을 때 원인 찾는 방법 (4) | 2022.02.22 |
[스프링] TOMCAT 7.0 이하 사용 관련하여 Apache 보안 취약점 패치 Log4j 2.17.0 빌드 안되는 이슈 해결 방법 (4) | 2022.02.19 |
댓글