1️⃣ 프로젝트 의존성 추가 가장 먼저 build.gradle에 의존성을 추가한다. dependencies { // MySQL implementation 'mysql:mysql-connector-java:8.0.33' // JPA implementation 'org.springframework.boot:spring-boot-starter-data-jpa' compileOnly 'org.projectlombok:lombok' implementation 'org.springframework.boot:spring-boot-starter-web' developmentOnly 'org.springframework.boot:spring-boot-devtools' annotationProcessor 'org.proj..