반응형
매우 간단함
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>
반응형
'그 외 ... (정리해야함) > 꿀팁' 카테고리의 다른 글
openssl을 이용한 개인키,공개키 생성(RSA) (2) | 2020.03.10 |
---|---|
RestTemplate 한글 깨짐관련(StringHttpMessageConverter) (0) | 2020.03.03 |
[JAVA] Stream을 이용한 이중 for문 (0) | 2019.08.05 |
윈도우 PC 키보드 MAC에서 사용하는 법 (0) | 2019.06.30 |
[Intellij] 컴파일 오류 (0) | 2019.04.22 |