객체 지향 프로그래밍 5대 원칙
SOLID
SRP(단일 책임의 원칙), Single Responsibility Priciple
OCP(개방-폐쇄 원칙), Open-Closed Priciple
LSP(리스코프 치환 원칙), Liskov Substitution Priciple
ISP(인터페이스 분리 원칙), Interface segregation principle
DIP(의존 역전 원칙), Dependency Inversion Priciple
SRP - 단일 책임의 원칙
하나의 메서드는 하나의 책임(관심사)
분리 :
1. 관심사
2. 변하는 것, 변하지 않는 것
3. 중복 코드
공통 코드의 분리 - 입력의 분리
'Spring > Ch2. Spring MVC' 카테고리의 다른 글
Spring MVC - 유효 범위(scope)와 속성(attribute) (0) | 2022.09.17 |
---|---|
Spring MVC - JSP, Servlet (0) | 2022.09.16 |
Spring MVC - servlet-context.xml (0) | 2022.09.16 |
Spring MVC - HTTP(Hyper Text Transfer Protocol)란? (0) | 2022.09.15 |
Spring MVC - server.xml, web.xml (0) | 2022.09.15 |