본문 바로가기
DB/H2

H2 임베디드 데이터 베이스

by fabxoe 2019. 9. 13.
<dependency>
	<groupId>com.h2database</groupId>
	<artifactId>h2</artifactId>
</dependency>

의존성

 

 

인-메모리 데이터베이스 기본 연결 정보 확인하는 방법

  • URL: “testdb”
  • username: “sa”
  • password: “”

H2 콘솔 사용하는 방법

  • spring-boot-devtools를 추가하거나...
  • spring.h2.console.enabled=true 만 추가.

/h2-console로 접속 (이 path도 바꿀 수 있음)



spring.datasource.hikari.driver-class-name=org.h2.Driver
spring.datasource.hikari.jdbc-url=jdbc:h2:mem:testdb
spring.datasource.hikari.username=sa
spring.datasource.hikari.password=


pangtrue.tistory.com/198

 

[DB/H2] H2 (In-Memory DB)

H2는 Java 기반의 오픈소스 RDBMS다. H2의 특징은 다음과 같다. Server 모드, Embeded 모드의 in-memory 기능을 지원한다. ( 디스크 기반의 테이블 또한 지원한다. ) 브라우저 기반의 콘솔모드를 사용할 수 있

pangtrue.tistory.com

 

'DB > H2' 카테고리의 다른 글

h2를 일반 DB로의 web 클라이언트 용도로만 사용하기  (0) 2021.08.12

댓글