My A1 Passion Project

application.properties 871B

12345678910111213141516171819202122232425262728
  1. # ===============================
  2. # TOMCAT
  3. # ===============================
  4. server.address=127.0.0.1
  5. server.error.whitelabel.enabled=true
  6. # ===============================
  7. # = LOGGING
  8. # ===============================
  9. logging.level.org.springframework.web=DEBUG
  10. logging.level.org.hibernate=ERROR
  11. # ===============================
  12. # = DATA SOURCE
  13. # ===============================
  14. spring.datasource.url=jdbc:mysql://localhost:3306/pcap
  15. spring.datasource.username=root
  16. spring.datasource.password=
  17. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  18. spring.datasource.tomcat.max-wait=10000
  19. spring.datasource.tomcat.max-active=5
  20. spring.datasource.tomcat.test-on-borrow=true
  21. # ===============================
  22. # = JPA / HIBERNATE
  23. # ===============================
  24. spring.jpa.show-sql = true
  25. spring.jpa.hibernate.ddl-auto = create-drop
  26. #change to update once functional