반응형
🚨 Postman send 버튼 클릭시 발생한 에러 메시지
{
"timestamp": "2024-07-11T17:14:17.577+00:00",
"status": 405,
"error": "Method Not Allowed",
"path": "/test"
}
❓에러 발생 이유
클라이언트에서 요청한 HTTP Method가 서버에 존재하지 않아 나타나는 오류 메시지입니다.
해당 오류 메시지는 Spring(Servlet, Tomcat)이 출력하는 에러 메시지입니다.
예를 들어 서버(Spring, Java)에서는 HTTP Method를 Put으로 요청받기를 설정하였지만, 클라이언트에서는 HTTP Method를 Post로 요청할 경우에 나타나는 에러입니다.
보통은 HTTP Method 설정을 잘못 설정하여 나타나는 에러입니다.
혹은 Spring에 해당 URL을 처리하는 Mapping이 잘못 구현되거나 구현되지 않은 상태입니다.
✅ 해결 방법
Client의 HTTP Method를 올바르게 설정 시켜 줍니다.
🌟 정상 응답 결과
Spring의 Controller 예시 코드
@PutMapping("/hello")
public TestUpdateUserResponse updateUser(@RequestBody TestUpdateUserRequest request) {
return new TestUpdateUserResponse(request);
}
참고: HTTP Method를 통일시켜 주면 되기 때문에 아래와 같이 Server(Spring)을 수정하여도 됩니다.
하지만 HTTP Method를 설정하는 부분은 API 설계의 가장 기본이 되는 부분이므로
프로젝트 기획 단계에서 알맞은 URL과 HTTP Method를 미리 결정해야 합니다.
// @PutMapping("/hello") @PutMapping -> @PostMapping로 변경
@PostMapping("/hello")
public TestUpdateUserResponse updateUser(@RequestBody TestUpdateUserRequest request) {
return new TestUpdateUserResponse(request);
}
전체 코드
TestController.java
@RestController
public class TestController {
@PutMapping("/hello")
public TestUpdateUserResponse updateUser(@RequestBody TestUpdateUserRequest request) {
return new TestUpdateUserResponse(request);
}
@Data
static class TestUpdateUserRequest {
private String username;
private int age;
}
@Data
static class TestUpdateUserResponse {
private String username;
private int age;
public TestUpdateUserResponse(TestUpdateUserRequest request) {
this.username = request.getUsername();
this.age = request.getAge();
}
}
}
반응형
'JAVA > Error' 카테고리의 다른 글
[Spring][Swagger] Request가 null로 전달될 때 해결 방법 (0) | 2024.09.23 |
---|---|
[QueryDSL] Could not find com.querydsl:querydsl-apt: 5.0.0. 오류 해결 방법 (0) | 2024.07.22 |
[Postman][Spring] 404 Not Found 오류 해결 방법 (0) | 2024.07.12 |
[Spring] The bean 'delegatingApplicationListener' 에러 해결 방법 (0) | 2024.05.28 |
[ Spring ] TransientPropertyValueException 에러 해결 방법 (0) | 2024.05.20 |
댓글