Advertisement
Guest User

Untitled

a guest
Jan 15th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. dataSource:
  2. pooled: true
  3. jmxExport: true
  4. driverClassName: org.postgresql.Driver
  5. username: postgres
  6. password: root
  7.  
  8. environments:
  9. development:
  10. dataSource:
  11. dbCreate: update
  12. url: jdbc:postgresql://localhost:5432/trace_db
  13. test:
  14. dataSource:
  15. dbCreate: update
  16. url: jdbc:postgresql://localhost:5432/trace_db
  17. production:
  18. dataSource:
  19. dbCreate: update
  20. url: jdbc:postgresql://localhost:5432/trace_db
  21. properties:
  22. jmxEnabled: true
  23. initialSize: 5
  24. maxActive: 50
  25. minIdle: 5
  26. maxIdle: 25
  27. maxWait: 10000
  28. maxAge: 600000
  29. timeBetweenEvictionRunsMillis: 5000
  30. minEvictableIdleTimeMillis: 60000
  31. validationQuery: SELECT 1
  32. validationQueryTimeout: 3
  33. validationInterval: 15000
  34. testOnBorrow: true
  35. testWhileIdle: true
  36. testOnReturn: false
  37. jdbcInterceptors: ConnectionState
  38. defaultTransactionIsolation: 2 # TRANSACTION_READ_COMMITTED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement