application.yml
server:
port: 8080
spring:
h2:
console:
enabled: true
path: /h2-console
datasource:
url: jdbc:h2:~/test
username: sa
password: 1234
driver-class-name: org.h2.Driver
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
localhost:8080/h2-console 접속
참고
'Dev > Spring Boot' 카테고리의 다른 글
JUnit4 기반 Spring Rest Docs 작성 방법 (0) | 2022.03.22 |
---|---|
application.yml 위치 변경하기 (0) | 2022.02.17 |
Maven 프로젝트 실행 환경 구성 (0) | 2022.02.13 |
[코드로 배우는 스프링 부트] 스프링과 빈의 의존관계 (1) | 2021.02.23 |
[코드로 배우는 스프링 부트] 회원 관리 예제(2) (0) | 2021.02.22 |