Guest User

Untitled

a guest
Jan 5th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ## Spring DATA SOURCE Configurations
  2. spring.datasource.url = jdbc:mysql://localhost:3306/spring_examples_db?useSSL=false
  3. spring.datasource.username = root
  4. spring.datasource.password = test123
  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 = update
Add Comment
Please, Sign In to add comment