Guest User

Untitled

a guest
Jul 16th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # JPA
  2. spring.jpa.hibernate.ddl-auto=update
  3. spring.jpa.generate-ddl=true
  4. spring.jpa.show-sql=true
  5. spring.jpa.format-sql=true
  6. spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
  7. spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
  8. spring.jpa.properties.hibernate.show_sql=true
  9. spring.jpa.properties.hibernate.use_sql_comments=true
  10. spring.jpa.properties.hibernate.format_sql=true
  11. spring.jpa.properties.hibernate.type=trace
  12. # Enabling H2 Console
  13. spring.h2.console.enabled=true
  14. spring.h2.console.path=/h2
  15. spring.datasource.driver-class-name=org.h2.Driver
  16. #spring.datasource.url=jdbc:h2:mem:SecurusDB;DB_CLOSE_DELAY=-1
  17. spring.datasource.url=jdbc:h2:file:~/SecurusDB;DB_CLOSE_DELAY=-1
  18. spring.datasource.username=sa
  19. spring.datasource.password=
Add Comment
Please, Sign In to add comment