Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. spring.datasource.url=${JDBC_DATABASE_URL}
  2. spring.datasource.username=${JDBC_DATABASE_USERNAME}
  3. spring.datasource.password=${JDBC_DATABASE_PASSWORD}
  4. spring.jpa.show-sql=true
  5. spring.jpa.generate-ddl=true
  6. spring.jpa.hibernate.ddl-auto=update
  7. spring.datasource.driverClassName=org.postgresql.Driver
  8. spring.datasource.maxActive=10
  9. spring.datasource.maxIdle=5
  10. spring.datasource.minIdle=2
  11. spring.datasource.initialSize=5
  12. spring.datasource.removeAbandoned=true
  13. spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement