Advertisement
Guest User

Untitled

a guest
Jan 25th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. server.port=3000
  2. server.domain=http://localhost:3000
  3. # ===============================
  4. # HIBERNATE AND H2
  5. # ===============================
  6. # H2
  7. spring.h2.console.enabled=true
  8. spring.h2.console.path=/h2
  9. # Datasource
  10. spring.datasource.url=jdbc:h2:file:~/test
  11. spring.datasource.username=sa
  12. spring.datasource.password=
  13. spring.datasource.driver-class-name=org.h2.Driver
  14. # ===============================
  15. # THREADS
  16. # ===============================
  17. server.tomcat.max-threads=10000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement