spring:
datasource:
url: "jdbc:mysql://localhost/test"
username: "??"
password: "??"
driver-class-name: com.mysql.cj.jdbc.Driver
1-1 url : jdbc를 이용해 mysql 접근/localhost -나의 컴퓨터/test - 데이터베이스 접근
1-2 username : mysql 아이디
1-3 password : mysql 비밀번호
1-4 driver-class-name : 데이터베이스에 접근할 때 사용할 프로그램(mysql)
jpa:
hibernate:
ddl-auto: none
properties:
hibernate:
show_sql: true
format_sql: true
dialect: org.hibernate.dialect.MySQL8Dialect
2-1 ddl-auto
2-2 show_sql : JPA를 사용해 DB에 SQL을 날릴 때 SQL을 보여줄지 결정(create,select,insert 등) - System.out.println(~~)으로 출력하기 때문에 사용하지 않고 보통 로그를 통해서 출력
2-3 dialect : JPA가 서로다른 DB 언어들을 알맞게 수정
logging:
level:
org.hibernate.sql: debug
spring:
datasource:
url: "jdbc:mysql://localhost/test"
username: "??"
password: "??"
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
ddl-auto: none
properties:
hibernate:
#show_sql: true
format_sql: true
dialect: org.hibernate.dialect.MySQL8Dialect
logging:
level:
org.hibernate.sql: debug