Advertisement
Guest User

Untitled

a guest
Oct 10th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # ===============================
  2. # PERSISTENCE
  3. # ===============================
  4.  
  5. # General Configuration
  6. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
  7.  
  8. # Database connection properties
  9. spring.datasource.url=jdbc:mysql://localhost:3306/mycontact?useUnicode=yes&characterEncoding=UTF-8&useSSL=false
  10. spring.datasource.username=root
  11. spring.datasource.password=root
  12.  
  13. # Statement logging and statistics
  14. spring.jpa.show-sql=true
  15. #spring.jpa.properties.hibernate.format_sql=true
  16.  
  17. # Automatic schema generation
  18. spring.jpa.hibernate.ddl-auto=none
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement