IT/SpringBoot
[SpringBoot] h2 db 설정, h2 콘솔 접속하기
hi.anna
2024. 5. 4. 23:14
H2 DB
SpringBoot의 2 DB는 embedded, 오픈소스, in-memory, 관계형 데이터 베이스입니다.
SpringBoot 프로젝트에 h2 db 포함 시키기
maven (pom.xml)
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
gradle (build.gradle)
dependencies {
// H2
runtimeOnly 'com.h2database:h2'
}
Spring 설정
application.properties
# H2 콘솔을 활성화합니다.
# 이를 통해 웹 브라우저에서 H2 데이터베이스를 관리할 수 있는 콘솔에 접근할 수 있습니다.
spring.h2.console.enabled=true
# 데이터베이스 URL을 설정합니다.
# 'mem:testdb'는 인메모리 모드에서 'testdb'라는 이름의 데이터베이스를 생성합니다.
spring.datasource.url=jdbc:h2:mem:testdb
# 데이터베이스 연결을 위한 드라이버 클래스를 지정합니다.
# H2 데이터베이스의 경우 'org.h2.Driver'를 사용합니다.
spring.datasource.driverClassName=org.h2.Driver
# 데이터베이스 연결을 위한 사용자 이름을 설정합니다.
# 기본값은 'sa'입니다.
spring.datasource.username=sa
# 데이터베이스 연결을 위한 비밀번호를 설정합니다.
# 여기서는 예시로 'password'를 사용하고 있습니다.
spring.datasource.password=password
application.yaml
spring:
h2:
console:
enabled: true
datasource:
url: jdbc:h2:mem:testdb
driver-class-name: org.h2.Driver
username: sa
password: password
H2 Console 접속
SpringBoot 프로젝트를 실행합니다.
SpringBoot를 실행하면,
브라우저에서 H2 Console에 접속할 수 있습니다.
웹브라우저로 H2 콘솔에 접속합니다.
URL은 다음과 같습니다.
localhost:8080/h2-console
application.properties 또는 application.yaml 에 설정한
username, password를 입력하여
H2 데이터페이스 콘솔에 접속할 수 있습니다.
이제 H2 콘솔을 통해 DB를 관리하고 쿼리를 실행할 수 있습니다.
(단, 인메모리 DB이기 때문에, SpringBoot를 재실행하면 DB에 생성한 데이터는 모두 초기화됩니다.)
반응형