Guest User

Untitled

a guest
Jan 9th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. # H2 console
  2. spring.h2.console.enabled = true
  3. spring.h2.console.path = /h2
  4. # Datasource
  5. spring.datasource.url = jdbc:h2:file:~/todos
  6. spring.datasource.username = sa
  7. spring.datasource.password =
  8. spring.datasource.driver-class-name = org.h2.Driver
  9.  
  10. spring.jpa.show-sql = true
  11. spring.jpa.properties.hibernate.format_sql = true
  12. spring.jpa.hibernate.ddl-auto = update
  13. spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
  14. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.H2Dialect
Add Comment
Please, Sign In to add comment