spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:포트/DB이름?serverTimezone=Asia/Seoul
username: (유저명)
password: (비밀번호)
jpa:
show-sql: true #(JPA 쿼리문 확인 가능)
hibernate:
ddl-auto: update #(DB 고유의 기능 사용 가능)
properties:
hibernate:
format_sql: true #(hibernate가 동작하며 발생하는 sql의 가독성을 높여준다.)
jpa:
hibernate:
ddl-auto: [ ]
mysql의 package를 찾지 못하던 오류가 발생하였다.
해결 방법 here