without haste but without rest

Layered Architecture 본문

Computer Science

Layered Architecture

JinungKim 2022. 2. 10. 10:10

https://cs.uwaterloo.ca/~m2nagapp/courses/CS446/1195/Arch_Design_Activity/Layered.pdf

 


Presentation Layer

인터페이스로, 요청에만 집중하고 내부 비지니스 로직은 신경쓰지 않는다.


Business Layer

로직 처리에 집중한다. 이때 변경 및 추가사항의 일관성(받는 요청의 형태와 리턴하는 결과의 형태의 일관성)이 필요하다.


Persistent Layer

business layer로부터 전달 받은 결과를 저장하는 것에 집중한다.


 

'Computer Science' 카테고리의 다른 글

SOLID Principle  (0) 2022.02.10
애플리케이션 배포 프로세스  (0) 2022.01.13
Comments