Advertisement
Guest User

Untitled

a guest
Nov 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. #Dev environment application properties
  2.  
  3. #Datasource settings
  4. spring.datasource.url=jdbc:postgresql://localhost:5432/issue_tracker?createDatabaseIfNotExist=true
  5. spring.datasource.driver-class-name=org.postgresql.Driver
  6. spring.datasource.username=issue_tracker
  7. spring.datasource.password=issue_tracker
  8. spring.jpa.database=postgresql
  9.  
  10. #Hibernate settings
  11. spring.jpa.hibernate.ddl-auto=create
  12. spring.jpa.show-sql=true
  13.  
  14. # HikariCP settings
  15. spring.datasource.hikari.connection-timeout=60000
  16. spring.datasource.hikari.maximum-pool-size=5
  17.  
  18. # Spring session settings
  19. spring.session.store-type=jdbc
  20.  
  21. # Profile configuration
  22. # Data-setup profile here is used for initial test data setup on application run
  23. spring.profiles.active=default,data-setup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement