환경설정 build.gradle 파일에 jdbc, h2 데이터베이스 관려 라이브러리 추가 implementation 'org.springframework.boot:spring-boot-starter-jdbc' runtimeOnly 'com.h2database:h2' build.gradle plugins { id 'org.springframework.boot' version '2.7.0' // 스타터 사이트에서 선택한 버전 id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'hello' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' repositories { /..