[Spring 입문] Spring DB 접근 기술 -- 순수 JDBC
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' implementation 'org.springframework.boot:spring-boot-starter-jdbc' runtimeOnly 'com.h2database:h2'}자바는 DB와 붙으려면 JDBC 드라이버가 꼭 필요하다!bundle.gradle 에 추가하자~ application.properties..