[DB] H2 Database DB 연동 방법 [스프링 부트 데이터베이스 연결 설정 세팅]
·
▣ SQL : Database/H2 Database🔠
- H2 Database DB 연동 방법 build.gradle 파일에 JDBC, h2 데이터베이스 관련 라이브러리 추가 implementation 'org.springframework.boot:spring-boot-starter-jdbc' runtimeOnly 'com.h2database:h2' 스프링 부트 데이터베이스 연결 설정 추가 [위치 : resources/application.properties] spring.datasource.url=jdbc:h2:tcp://localhost/~/test spring.datasource.driver-class-name=org.h2.Driver spring.datasource.username=sa
[DB] H2 Database DB 파일 저장 위치 [윈도우(windows)에서 .mv.db 파일 경로 찾기]
·
▣ SQL : Database/H2 Database🔠
- H2 Database DB 파일 저장 위치 윈도우의 경우, C:\Users\user 에 가면 .mv.db 파일이 존재한다. (mac과 Linux의 경우, home 디렉토리에 파일이 생성된다.)
[DB] H2 Database : 웹 화면을 제공하는 테스트용 DB [H2 Database 설치 방법]
·
▣ SQL : Database/H2 Database🔠
- H2 Database란? H2 Database는 초기개발이나 테스트 용도로 사용하기 좋으며, 웹 화면에서 DB를 관리할 수 있다. H2 Database Engine (redirect) H2 Database Engine Welcome to H2, the free SQL database. The main feature of H2 are: It is free to use for everybody, source code is included Written in Java, but also available as native executable JDBC and (partial) ODBC API Embedded and client/server mo www.h2database.com - H2 Database 접속이..