In this lesson, you learn how to use Spring Boot to implement a simple RESTful endpoint, focusing on the GET operation to retrieve a Cash Card.
POST
for Create, GET
for Read, PUT
for Update, and DELETE
for Delete. Each operation interacts with a URI (Endpoint) and has a response status code, such as 200 OK
for successful retrieval.GET
request is sent to /cashcards/{id}
. The response includes a status of 200 OK
and the Cash Card data in JSON format.@RestController
, and the @GetMapping
annotation defines the endpoint for GET
requests. The @PathVariable
annotation captures the dynamic part of the URI, like the id
in /cashcards/{id}
.ResponseEntity
with a 200 OK
status and the body containing the Cash Card.GET
request to /cashcards/{id}
retrieves the Cash Card details.@RestController
, @GetMapping
, and ResponseEntity
for handling responses.이 레슨에서는 Spring Boot를 사용하여 RESTful API에서 GET 작업을 구현하는 방법을 배웁니다.
POST
는 생성, GET
은 읽기, PUT
은 수정, DELETE
는 삭제를 수행하며, 각 작업은 URI(엔드포인트)와 상태 코드를 반환합니다. 예를 들어, GET
요청을 /cashcards/{id}
로 보내면 해당 ID의 Cash Card 정보를 가져옵니다.@RestController
로 정의되며, @GetMapping
을 사용해 GET
요청을 처리합니다. @PathVariable
을 사용해 동적 URI 부분(예: ID)을 가져옵니다.ResponseEntity
를 사용해 응답 코드 200 OK
와 Cash Card 데이터를 포함한 응답 본문을 반환합니다./cashcards/{id}
에 대한 GET
요청은 Cash Card 정보를 반환합니다.@RestController
, @GetMapping
, ResponseEntity
를 사용해 RESTful 엔드포인트를 정의합니다.