API(Presentation) Layer : @Controller 0. Spring 위임영역 : req를 controller까지 보내준 상태 1. Presentation(API) Layer @Controller : req를 처리해야 할 controller까지 찾아온 상태 2. Business(Service) Layer @Service : 실질적인 액션을 하는 단계 → 컨트롤러와 서비스가 유사하게 느껴지지만, 컨트롤러는 좀 더 거시적인 관점에서 흐름제어(혹은 관문역할)를 하고, 서비스가 실질적인 비지니스 로직을 가지고 있음. → 객체지향 관점에서 계속 객체단위로 나뉜다고 생각 3. Persistant Layer @Repository : 물리DB와 통신하는 인터페이스 계층 Response는 반대로(3→2→..