[H2 DB] H2 Database & Spring Boot 무설치 연동 방법

2022. 7. 17. 16:25Server

[H2 DB] H2 Database & Spring Boot 무설치 연동 방법

[ H2 DB 설치 방법 연동 보러가기 ]

 

H2 DB를 설치하지 않는 방법으로 H2 DB를 사용할 수 있다.

해당 방법은 H2버전이 1.4.200 이하만 가능하다.

 


build.gradle 설정

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
    runtimeOnly 'com.h2database:h2:1.4.200'
}

 

application.yml 설정

spring:
  datasource:
    url:  jdbc:h2:~/test
    username: sa
    password:
    driver-class-name: org.h2.Driver
  h2:
    console:
      enabled: true
  jpa:
    hibernate:
      ddl-auto: create

 

 


프로젝트를 구동하면 test라는 db가 'C:\Users\사용자이름'에 .mv파일로 생긴다.

console창 주소는 http://localhost:8080/h2-console 로 들어가면 된다.

console에서는 JDBC URL란에 'jdbc:h2:~/test'를 적으면 된다.