Guest User

Untitled

a guest
Feb 25th, 2018
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.73 KB | None | 0 0
  1. spring.datasource.url= jdbc:postgresql://localhost:5432/musicflow
  2. spring.datasource.username=telyatkoa
  3. spring.datasource.password=lookatme
  4.  
  5. # Keep the connection alive if idle for a long time (needed in production)
  6. spring.datasource.testWhileIdle = true
  7. spring.datasource.validationQuery = SELECT 1
  8.  
  9. # ===============================
  10. # = JPA / HIBERNATE
  11. # ===============================
  12.  
  13. spring.jpa.hibernate.ddl-auto=update
  14.  
  15. # Disable feature detection by this undocumented parameter. Check the org.hibernate.engine.jdbc.internal.JdbcServiceImpl.configure method for more details.
  16. spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults = false
  17. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL95Dialect
Add Comment
Please, Sign In to add comment