백엔드가 하는 일을 무엇이라고 생각하시나요?
- 백엔드 개발자의 주된 업무는 서버 측 애플리케이션을 개발하는 일입니다.
- 개발 중 사용자가 필요로 하는 정보를 저장하고 관리하며 전달하는 역할을 수행한다고 생각하시면 됩니다.
- 즉, 서버, 데이터베이스, API 관련 일을 합니다.
- 이번 챕터에서는 API에 대해 간단하게 알아보는 시간을 가져 보도록 하겠습니다.
API 란?
- API는 클라이언트의 요청을 서버에 전달하고, 서버의 결과물을 클라이언트에게 잘 돌려주는 역할을 합니다.
- 간단하게 서버와 클라이언트의 중개자라고 말할 수 있습니다.
1장 에서 다운로드 받은 스프링 프로젝트로 시작해 주세요.
아래의 코드를 모두 작성하셔야 빨간줄(에러)가 발생하지 않습니다.
⚠️ import
가 아래의 코드 내에는 작성 하지 않았지만 모두 있어야 합니다.
import가 필요한 클래스에 커서를 두고 Mac 환경에서는 option+Enter,
Windows 환경에서는 Alt+Enter를 해주시면 자동으로 import 되빈다.
@SpringBootApplication
public class HelloworldApplication {
public static void main(String[] args) {
SpringApplication.run(HelloworldApplication.class, args);
}
}
@RestController
@RequestMapping("/api/v1")
public class GdscController {
private final GdscService gdscService;
public GdscController(GdscService gdscService) {
this.gdscService = gdscService;
}
@GetMapping("/user")
public ApiResponse callResponse(@RequestParam String username){
return gdscService.madeMemberResponse(username);
}
}
@Service
public class GdscService {
public ApiResponse madeMemberResponse(String username) {
return new ApiResponse(username, 본인나이를 넣어주세요, AUTHORITY.MEMBER);
}
}
public enum Authority {
MEMBER, CORE, LEAD;
}
public record ApiResponse(String name, Integer age, Authority authority) {
}
위의 내용에 대한 답변 및 질문은 issue
로 남겨주세요.
2장을 해보고 해당 이유에 대해서 알게 된 정보를 issue
로 올려주세요.
형식은 자유입니다!
수고하셨습니다!