1. build.gradle에서 JDBC 드라이버를 Oracle로 변경 후, 반드시 Refresh Gradle 실행 ▪︎ 사용할 데이터베이스 JDBC 드라이버만 주석 풀고 사용 ▪︎ 전체 build.gradle 코드 - 무슨 기능을 하는지 알아야 함 - Snippets 등록해놓음 ( SpringBoot 폴더에 '최종 build.gradle 정리' 이름으로 등록 ) plugins { id 'java' id 'org.springframework.boot' version '3.1.2' id 'io.spring.dependency-management' version '1.1.2' } group 'org.choongang' version '1.0' sourceCompatibility = '17' repositor..