해보자

[Spirngboot] h2 Database Connection 본문

Spring

[Spirngboot] h2 Database Connection

안댕 2020. 9. 9. 03:09

dependency 추가 및 설정 파일 내용 추가

build.gradle

dependencies {
    compile('com.h2database:h2')
}

application.yml

spring:
  jpa:
    show_sql: true
  h2:
    console:
      enabled: true

실행

메모리에서 실행하기 때문에 직접 접근하려면 web console을 사용해야 함

1. Application.java(SpringBootApplication) Run

2. browser 실행 후, 주소창에 localhost://[port-number]/h2-console을 입력