반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Eclipse
- windows
- list
- Files
- Button
- vscode
- ArrayList
- 이탈리아
- 이클립스
- CSS
- Array
- 테이블
- IntelliJ
- Java
- 자바
- html
- 인텔리제이
- js
- 문자열
- input
- json
- Visual Studio Code
- 배열
- 자바스크립트
- CMD
- table
- string
- Maven
- javascript
- date
Archives
- Today
- Total
어제 오늘 내일
[SpringBoot] h2 db 설정, h2 콘솔 접속하기 본문
H2 DB
SpringBoot의 2 DB는 embedded, 오픈소스, in-memory, 관계형 데이터 베이스입니다.
SpringBoot 프로젝트에 h2 db 포함 시키기
maven (pom.xml)
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
gradle (build.gradle)
dependencies {
// H2
runtimeOnly 'com.h2database:h2'
}
Spring 설정
application.properties
# H2 콘솔을 활성화합니다.
# 이를 통해 웹 브라우저에서 H2 데이터베이스를 관리할 수 있는 콘솔에 접근할 수 있습니다.
spring.h2.console.enabled=true
# 데이터베이스 URL을 설정합니다.
# 'mem:testdb'는 인메모리 모드에서 'testdb'라는 이름의 데이터베이스를 생성합니다.
spring.datasource.url=jdbc:h2:mem:testdb
# 데이터베이스 연결을 위한 드라이버 클래스를 지정합니다.
# H2 데이터베이스의 경우 'org.h2.Driver'를 사용합니다.
spring.datasource.driverClassName=org.h2.Driver
# 데이터베이스 연결을 위한 사용자 이름을 설정합니다.
# 기본값은 'sa'입니다.
spring.datasource.username=sa
# 데이터베이스 연결을 위한 비밀번호를 설정합니다.
# 여기서는 예시로 'password'를 사용하고 있습니다.
spring.datasource.password=password
application.yaml
spring:
h2:
console:
enabled: true
datasource:
url: jdbc:h2:mem:testdb
driver-class-name: org.h2.Driver
username: sa
password: password
H2 Console 접속
SpringBoot 프로젝트를 실행합니다.
SpringBoot를 실행하면,
브라우저에서 H2 Console에 접속할 수 있습니다.
웹브라우저로 H2 콘솔에 접속합니다.
URL은 다음과 같습니다.
localhost:8080/h2-console
application.properties 또는 application.yaml 에 설정한
username, password를 입력하여
H2 데이터페이스 콘솔에 접속할 수 있습니다.
이제 H2 콘솔을 통해 DB를 관리하고 쿼리를 실행할 수 있습니다.
(단, 인메모리 DB이기 때문에, SpringBoot를 재실행하면 DB에 생성한 데이터는 모두 초기화됩니다.)
반응형
'IT > SpringBoot' 카테고리의 다른 글
[Spring] 등록 된 모든 Bean 목록 출력하기 (2) | 2024.04.08 |
---|---|
[Spring Boot] @RequestParam 어노테이션 사용법 (0) | 2023.12.20 |
[Spring Boot / 에러] Name for argument of type [java.lang.String] not specified, and parameter name information not found in class file either (0) | 2023.12.19 |
[Spring Boot] 서버 포트 변경하기 (0) | 2023.06.25 |
[SpringBoot] SpringBoot 특징 (0) | 2021.10.04 |
Comments