Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
  2. spring.datasource.url = jdbc:mysql://localhost:3306/kotlin-journal-app?allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=UTC&useLegacyDatetimeCode=false
  3. spring.datasource.username = root
  4. spring.datasource.password =
  5.  
  6.  
  7. ## Hibernate Properties
  8.  
  9. # The SQL dialect makes Hibernate generate better SQL for the chosen database
  10. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
  11.  
  12. # Hibernate ddl auto (create, create-drop, validate, update)
  13. spring.jpa.hibernate.ddl-auto = update
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement