1. appliication.yml 파일에 아래와 같이 데이터소스 설정
spring:
datasource:
url: jdbc:h2:mem:test
username: sa
password:
driverClassName: org.h2.Driver
(application.properties)
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:test
spring.datasource.username=sa
spring.datasource.password=
2. 서버 구동 후 로그 확인
/h2-console url로 db 접근 가능
3. localhost:8080/h2-console 접근
설정한 url로 JDBC URL 설정 후 연결
-끝-
반응형
'Database' 카테고리의 다른 글
[Database / SQLD] 데이터 모델링의 이해 (Part1 - Ch01) (0) | 2024.04.19 |
---|---|
[Redis] Redisson 분산락(DistributedLock) AOP 적용 (0) | 2023.11.10 |
[Redis] Redisson 분산 락을 간단하게 적용해보기 (0) | 2023.11.07 |
[Redis] 레디스 설치 및 기본 기능 (0) | 2023.11.07 |
[DB] H2 데이터베이스 설치하고 시작하기 (0) | 2023.05.29 |