Springboot 에 H2 데이터베이스 연결하기

2022. 3. 22. 17:39[SpringBoot]_/[Spring-boot]_인프런 강의

728x90
반응형

환경 : IntelliJ

DB: h2

빌더 : gradle

 

1. 설치는 다음 포스트 참고

https://yn971106.tistory.com/72

 

[Spring-boot]_7차 H2 데이터베이스 설치(feat.window)

1] 해당 링크에서 1.4.200 버전을 다운받습니다. https://www.h2database.com/html/download-archive.html Archive Downloads www.h2database.com 해당 Platform-Independent zip을 다운받아야 합니다. 2] 압축을..

yn971106.tistory.com

 

설치가 완료된 시점으로부터 설명하겠습니다.

 

2. build.gradle 수정

dependencies {
   implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
   implementation 'org.springframework.boot:spring-boot-starter-web'
   implementation 'org.springframework.boot:spring-boot-starter-jdbc' jdbc 사용시 활성화
   runtimeOnly 'com.h2database:h2'
   testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

bulid.gradle 에 dependencies 부분에 2줄 추가

 

implementation 'org.springframework.boot:spring-boot-starter-jdbc' jdbc 사용시 활성화

runtimeOnly 'com.h2database:h2'

 

3. gradle 동기화

4. appication.properties 수정

spring.datasource.url=jdbc:h2:tcp://localhost/~/test
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=

 

해당 4줄을 추가한다.

url의 경우

JDBC URL 의 주소이며,

id는 사용자명

pw 는 공백

에 해당한다.

 

감사합니다.

728x90
반응형