Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 583 Bytes

page19.md

File metadata and controls

43 lines (27 loc) · 583 Bytes
layout
default

Shop Projesi - h2 db kullanilmasi

https://github.com/microservice-base/shop

build.gradle

dependencies{

runtimeOnly('com.h2database:h2')

}

application.properties


#### H2 Web Dashboard 
spring.h2.console.enabled=true
spring.h2.console.path=/h2

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

Run shop application

open localhost:8001/shop/h2

H2 Console