그 외 ... (정리해야함)/꿀팁

Springboot에서 H2데이터베이스 콘솔 설정하기

깡냉쓰 2019. 8. 7. 22:35
728x90
반응형

매우 간단함

H2 데이터베이스 기본 설정

spring.datasource.url=jdbc:h2:mem:testdb  
spring.datasource.driverClassName=org.h2.Driver  
spring.datasource.username=sa  
spring.datasource.password=  
spring.h2.console.enabled=false

H2데이터베이스는 따로 설정하지 않으면, 위의 값이 기본값으로 설정됨
testdb 스키마에 mem(인 메모리 방식)으로 동작하라는 설정

우리는 콘솔이 필요하므로, application.properties에

spring.h2.console.enabled=true

만 설정해주면됨

서버를 띄운 후 localhost:8080/h2-console 로 접속하면 위와 같은 화면이 뜨고, 로그인하여서 SQL을 활용하여 데이터를 쉽게 다룰수 있게된다..!

pom.xml

<dependency>
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId>
      <scope>runtime</scope>
</dependency>
728x90
반응형