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
- 프로그래머스
- Java
- window
- Client
- Linux
- Spring Legacy Project
- Hibernate
- 토비의스프링
- WebHook
- ssh
- AWS
- TypeScript
- jdbc
- vagrant
- 책 정리
- github
- centos7
- docker
- Git
- spring boot
- Jenkins
- sample
- 코딩테스트
- DISTINCT
- SSL
- db
- mariadb
- EC2
- spring
- TLS
Archives
- Today
- Total
Woopii Vyeolog
[Spring Boot] H2DB JDBC연동 본문
● Spring boot에 H2DB Dependency 추가
1. 아래 링크로 h2db 사이트의 maven dependency 확인
http://h2database.com/html/build.html?highlight=maven&search=maven#maven2
2. pom.xml에 다음을 추가
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
</dependency>
3. application.yml 파일에 다음과 같이 추가
##h2.console 은 h2db 콘솔 화면에 접속이 가능하게 해주는 설정
spring:
h2:
console:
enabled: true
path: /h2-console
datasource:
driverClassName: org.h2.Driver
#url: jdbc:h2:file:./target/h2db/db/application;DB_CLOSE_DELAY=-1
url: jdbc:h2:mem:testdb
username: sa
password:
4. 프로젝트 실행 후 콘솔 접속
url =====> http://localhost:8080/h2-console
application.yml 에 적었던 설정대로 h2-console 화면에도 입력
5. 접속 확인
'Spring Boot' 카테고리의 다른 글
[Spring Boot] Mybatis Sample (0) | 2022.02.05 |
---|---|
[spring boot] JPA sample (0) | 2022.02.04 |
[Spring boot] SQL script 를 활용한 DB 초기화 (0) | 2022.02.03 |
[Spring Boot] profiles 변경 (0) | 2022.02.02 |
[Spring Boot] 프로젝트 생성 및 시작하기 (Visual Studio Code) (0) | 2021.09.18 |
Comments