[H2 DB] H2 Database & Spring Boot 무설치 연동 방법
2022. 7. 17. 16:25ㆍServer
[H2 DB] H2 Database & Spring Boot 무설치 연동 방법
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'를 적으면 된다.
'Server' 카테고리의 다른 글
[Server] Oracle Cloud - MariaDB 설치 및 DB연결 (0) | 2023.04.04 |
---|---|
[Server] 외부에서 내 Localhost에 접속이 가능하다? ngrok으로 연결하기 (0) | 2022.07.30 |
[H2 DB] H2 Database & Spring Boot 연동 방법 (0) | 2022.02.28 |
[Tomcat] Spring Boot 프로젝트 Tomcat 10에서 배포하기 (1) | 2021.12.01 |
[Docker] Nginx-tomcat 로드밸런서(Load Balancer) 구현하기 / feat.docker-compose (0) | 2021.11.17 |