시작전에, 데이터베이스 설정 일단 지금은 테스트를 위해, 인메모리 데이터베이스인 H2 데이터베이스를 사용한다, H2 데이터베이스는 프로젝트 시작할 때 install을 해주었으며, 간단하게 설정해 줄 수 잇다. src > main > resources > application.properties 파일에 다음 아래의 명러어 3개를 입력하면 끝! spring.h2.console.enabled=true spring.datasource.url=jdbc:h2:mem:testdb spring.jpa.show-sql=true http://localhost:8080/h2-console 접속 - url에 testdb url에 입력! Spring은 Controller, Service, Repository 3개의 레이어로 나..