Advertisement
Guest User

Untitled

a guest
Nov 7th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # Disable Thymeleaf caching for hot-swapping of templates
  2. spring.thymeleaf.cache = false
  3.  
  4. # Database connection settings
  5. spring.datasource.url=jdbc:mysql://localhost:3306/blogz
  6. spring.datasource.username=blogz
  7. spring.datasource.password=launchcode
  8.  
  9. # Specify the DBMS
  10. spring.jpa.database = MYSQL
  11.  
  12. # Show or not log for each sql query
  13. spring.jpa.show-sql = false
  14.  
  15. # Hibernate ddl auto (create, create-drop, update)
  16. spring.jpa.hibernate.ddl-auto = update
  17.  
  18. # Naming strategy
  19. spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
  20.  
  21. # Use spring.jpa.properties.* for Hibernate native properties (the prefix is
  22. # stripped before adding them to the entity manager)
  23. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement