Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ## Database Properties
  2. #spring.datasource.driverClassName=org.postgresql.Driver
  3. spring.datasource.maxActive=10
  4. spring.datasource.maxIdle=5
  5. spring.datasource.minIdle=2
  6. spring.datasource.initialSize=5
  7. spring.datasource.removeAbandoned=true
  8.  
  9. ## PostgreSQL
  10. spring.datasource.url=jdbc:postgresql://localhost:5432/finance
  11. spring.datasource.username=username
  12. spring.datasource.password=password
  13.  
  14. #drop n create table again, good for testing, comment this in production
  15. spring.jpa.hibernate.ddl-auto=create
  16.  
  17. spring.data.rest.base-path=/api
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement