로컬에 H2 데이터베이스 설치
https://yurison.tistory.com/450
위 내용 참고!
build.gradle 설정
dependencies {
...
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.h2database:h2'
}
application.yml 설정
spring:
h2:
console:
enabled: true
path: /H2-console
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:~/test
username: sa
password:
jpa:
hibernate:
ddl-auto: create
properties:
hibernate:
format_sql: true
dialect: org.hibernate.dialect.H2Dialect # 데이터베이스 방언 설정
logging:
level:
org.hibernate.sql: debug
org.hibernate.type: trace
jpa.properties.hibernate.dialect는 평소에는 작성하진 않았지만 책에 나와있길래 넣어줬다.
DBMS마다 사용하는 SQL이 다소 차이가 있기 때문에 넣어주는 속성이다.
'공부 기록 > Java' 카테고리의 다른 글
[JPA] 3장 - 영속성 관리 (0) | 2023.06.20 |
---|---|
[JPA] 2장 - JPA 애플리케이션 개발 (0) | 2023.06.11 |
[Java] 큐(Queue) (0) | 2023.05.12 |
[Java] 문자열(String), 숫자(int, double, float, long, short) 형변환 (0) | 2023.05.04 |
[Java] POJO (0) | 2023.05.04 |