본문 바로가기
lecture.js/springboot

h2 DB설정

by malda 2019. 6. 19.

1) maven일 경우, pom.xml에 추가, gradle일 경우, build.gradle에 dependency 추가

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>

 

2) application.properties에 DB관련 설정 추가

spring.h2.console.enabled=true
spring.datasource.url=jdbc:h2:file:~/social-multiplication;DB_CLOSE_ON_EXIT=FALSE;
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true

 

3) springboot run이후 http://localhost:port/h2-console로 접속

'lecture.js > springboot' 카테고리의 다른 글

@SpringBootApplication  (0) 2019.06.19
spring-boot-starter 와 spring-boot-starter-web의 차이  (0) 2019.06.19