본문 바로가기
JAVA/Spring Framework

@PostMapping("/post)

by PlusUltraCode 2024. 2. 13.

어노테이션의 일종으로 Client가 "/post" URI로 POST 요청을 보내면 해당 메서드가 실행된다는 의미이다.

@PostMapping("/post")
public ResponseEntity<String> handlePostRequest() {
    // POST 요청을 처리하는 로직
    return ResponseEntity.ok("Post request handled successfully");
}

'JAVA > Spring Framework' 카테고리의 다른 글

snake_case camelCase  (1) 2024.02.13
@RestController , @RequestMapping("/api")  (0) 2024.02.13
@RequestBody  (0) 2024.02.13