[ ] OCP 개방-폐쇄 원칙 (p. 45)
[ ] DI (Dependencies Injection)
intellij 단축키
# java는 보통
getter, setter 필요
→ 프로젝트 초기버전 만들어주는 사이트(스프링에서 운영)
# 메인 프로젝트 파일
main/
└ java/
└ resources/ # 자바 파일을 제외한 나머지 파일
test/
gradle :
dependencies { //라이브러리
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test' // 기본
}

