H2 DB 사용하기
By Bys on April 21, 2022
1. H2 DB 설치
-
H2 사이트에 접속 > Download > All Platforms를 다운받는다.
- 압축해제
mkdir -p ~/util mv h2-2022-04-09.zip ~/util unzip ~/utilh2-2022-04-09.zip
- 실행
cd bin chmod 755 h2.sh ./h2.sh -webAllowOthers
실행을 하고 나면 아래와 Web 콘솔화면이 열린다. Generic H2 (Server)를 선택
연결 버튼을 누르면 아래와 같은 화면이 나온다.
2. H2 DB 사용하기
spring:
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:tcp://localhost/~/test
username: sa
password:
h2
db
]