Advertisement
Guest User

Untitled

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