Advertisement
Guest User

Untitled

a guest
Jun 12th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. # ===================================================================
  2. # APPLICATION PROPERTIES
  3. # ===================================================================
  4.  
  5. # ----------------------------------------
  6. # DATA PROPERTIES
  7. # ----------------------------------------
  8. # DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
  9. spring.datasource.driverClassName=org.h2.Driver
  10. spring.datasource.url=jdbc:h2:file:./database/test;MODE=PostgreSQL;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
  11. spring.datasource.username=user
  12. spring.datasource.password=user
  13.  
  14. # JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
  15. spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
  16. spring.jpa.hibernate.ddl-auto=update
  17. spring.jpa.show-sql=true
  18.  
  19. # H2 Web Console (H2ConsoleProperties)
  20. spring.h2.console.enabled=true # Enable the console.
  21. spring.h2.console.path=/h2-console # Path at which the console will be available.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement