application.properties 731B

123456789101112131415161718192021222324252627
  1. logging.level.org.springframework.web=DEBUG
  2. server.port=8080
  3. spring.h2.console.enabled=true
  4. spring.h2.console.path=/h2
  5. spring.datasource.url=jdbc:h2:file:~/dasboot
  6. spring.datasource.username=sa
  7. spring.datasource.password=
  8. spring.datasource.driver-class-name=org.h2.Driver
  9. spring.datasource.max-active=10
  10. spring.datasource.max-idle=8
  11. spring.datasource.max-wait=10000
  12. spring.datasource.min-evictable-idle-time-millis=1000
  13. spring.datasource.min-idle=8
  14. spring.datasource.time-between-eviction-runs-millis=1
  15. flyway.baseline-on-migrate=true
  16. spring.jpa.hibernate.ddl-auto=false;
  17. datasource.flyway.url=jdbc:h2:file:~/dasboot
  18. datasource.flyway.username=sa
  19. datasource.flyway.password=
  20. datasource.flyway.driver-class-name=org.h2.Driver