034. Properteis for JPA - dkkahm/study-springfamework5 GitHub Wiki

DataSource for MySQL

spring.datasource.username=
spring.datasource.password=
spring.datasource.url=jdbc:mysql://localhost:3306/photo_app
  • For Timezone Error
spring.datasource.url=jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8&serverTimezone=Asia/Seoul

JPA

spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.jpa.properties.hibernate.format_sql=true

# logging.level.org.hibernate.type=trace
logging.level.org.hibernate.type.descriptor.sql=true