build.gradle 수정 dependencies { . . developmentOnly 'org.springframework.boot:spring-boot-devtools' implementation('com.h2database:h2') runtimeOnly 'com.h2database:h2' . . } H2 Console 접속 하기 http://localhost:8080/h2-console test.mv 파일 생성하기 Generice H2 (Server) 에서 JDBC URL 는 jdbc:h2:~/test 로 설정하고 Connect 를 하면 test.mv 가 생성됩니다. Connect을 했을 시 이슈 발생 시 H2를 Window Server에 직접 설치해 줍니다. http://h2database.c..