본문 바로가기

카테고리 없음

h2 database 연결

 

application.properties


spring.h2.console.enabled=true
spring.datasource.url=jdbc:h2:mem:testdb

 

spring boot run

 

localhost:8080/h2-console

url을 아래와 같이 쳐서 들어가면 된다.

jdbc:h2:mem:testdb

 

 

https://atoz-develop.tistory.com/entry/H2-Database-%EC%84%A4%EC%B9%98-%EC%84%9C%EB%B2%84-%EC%8B%A4%ED%96%89-%EC%A0%91%EC%86%8D-%EB%B0%A9%EB%B2%95