Advertisement
Guest User

Untitled

a guest
Nov 26th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. # H2
  2. spring.h2.console.enabled=true
  3. spring.h2.console.path=/h2
  4.  
  5. # Datasource
  6. spring.datasource.url=jdbc:h2:file:~/test
  7. # spring.datasource.url=jdbc:h2:mem:test
  8. spring.datasource.username=sa
  9. spring.datasource.password=
  10. spring.datasource.driverClassName=org.h2.Driver
  11.  
  12. spring.jpa.show-sql=true
  13. spring.jpa.hibernate.ddl-auto=create-drop
  14. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.H2Dialect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement