Advertisement
Guest User

Untitled

a guest
Aug 27th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
  2. spring.datasource.url = jdbc:mysql://localhost:3306/notes_app?useSSL=false
  3. spring.datasource.username = root
  4. spring.datasource.password =
  5. ## Hibernate Properties
  6. # The SQL dialect makes Hibernate generate better SQL for the chosen database
  7. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
  8. # Hibernate ddl auto (create, create-drop, validate, update)
  9. spring.jpa.hibernate.ddl-auto = update
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement