Springboot 에 H2 데이터베이스 연결하기
2022. 3. 22. 17:39ㆍ[SpringBoot]_/[Spring-boot]_인프런 강의
728x90
반응형
환경 : IntelliJ
DB: h2
빌더 : gradle
1. 설치는 다음 포스트 참고
https://yn971106.tistory.com/72
설치가 완료된 시점으로부터 설명하겠습니다.
2. build.gradle 수정
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-jdbc' jdbc 사용시 활성화
runtimeOnly 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
bulid.gradle 에 dependencies 부분에 2줄 추가
implementation 'org.springframework.boot:spring-boot-starter-jdbc' jdbc 사용시 활성화
runtimeOnly 'com.h2database:h2'
3. gradle 동기화
4. appication.properties 수정
spring.datasource.url=jdbc:h2:tcp://localhost/~/test
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
해당 4줄을 추가한다.
url의 경우
JDBC URL 의 주소이며,
id는 사용자명
pw 는 공백
에 해당한다.
감사합니다.
728x90
반응형
'[SpringBoot]_ > [Spring-boot]_인프런 강의' 카테고리의 다른 글
[Spring-boot]_8차 순수 JDBC, JDBC Template, JPA (0) | 2022.03.22 |
---|---|
[Spring-boot]_7차 H2 데이터베이스 설치(feat.window) (0) | 2022.03.12 |
[Spring-boot]_6차 MVC 구조 만들기(feat.thymeleaf) (0) | 2022.03.12 |
[Spring-boot]_5차 Service(feat.메모리 저장) (0) | 2022.03.05 |
[Spring-boot]_4차 MemoryRepository(feat.JUnit) (0) | 2022.03.05 |