application.yml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. server:
  2. port: 4020
  3. servlet:
  4. session:
  5. timeout: 86400
  6. spring:
  7. servlet:
  8. multipart:
  9. max-file-size: 1GB
  10. max-request-size: 1GB
  11. application:
  12. name: autodop-master
  13. profiles:
  14. active: @profile.active@
  15. banner:
  16. location: classpath:banner.txt
  17. datasource:
  18. driver-class-name: com.mysql.cj.jdbc.Driver
  19. type: com.zaxxer.hikari.HikariDataSource
  20. hikari:
  21. minimum-idle: 5
  22. maximum-pool-size: 10
  23. auto-commit: true
  24. idle-timeout: 30000
  25. pool-name: EvaluationHikariCP
  26. max-lifetime: 1800000
  27. connection-timeout: 30000
  28. connection-test-query: SELECT 1
  29. jpa:
  30. show-sql: false
  31. open-in-view: true
  32. hibernate:
  33. ddl-auto: update
  34. properties:
  35. hibernate:
  36. hbm2ddl:
  37. auto: update
  38. dialect: org.hibernate.dialect.MySQL57Dialect
  39. mvc:
  40. dispatch-options-request: true
  41. thymeleaf:
  42. prefix: classpath:/templates
  43. suffix: .html
  44. mode: HTML
  45. encoding: utf-8
  46. servlet:
  47. content-type: text/html
  48. cache: false