Guest User

Untitled

a guest
Jun 9th, 2018
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ###
  2. # Database Settings
  3. ###
  4. spring:
  5. datasource:
  6. url: jdbc:h2:mem:example-app;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
  7. platform: h2
  8. username: sa
  9. password:
  10. driverClassName: org.h2.Driver
  11. jpa:
  12. database-platform: org.hibernate.dialect.H2Dialect
  13. hibernate:
  14. ddl-auto: update
  15. properties:
  16. hibernate:
  17. show_sql: true
  18. use_sql_comments: true
  19. format_sql: true
  20.  
  21. ###
  22. # H2 Settings
  23. ###
  24. h2:
  25. console:
  26. enabled: true
  27. path: /console
  28. settings:
  29. trace: false
  30. web-allow-others: false
Add Comment
Please, Sign In to add comment