Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. dataSource {
  2. pooled = true
  3. driverClassName = "org.postgresql.Driver"
  4. username = "postgres"
  5. password = "newPassword"
  6. dialect = org.hibernate.dialect.PostgreSQLDialect
  7.  
  8. }
  9. hibernate {
  10. cache.use_second_level_cache = true
  11. cache.use_query_cache = true
  12. cache.provider_class='org.hibernate.cache.EhCacheProvider'
  13. }
  14.  
  15. environments {
  16. development {
  17. dataSource {
  18. url="jdbc:postgresql://localhost:5432/appName"
  19. dbCreate = "create-drop"
  20. driverClassName = "org.postgresql.Driver"
  21. username = "postgres"
  22. password = "newPassword"
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement