application.yml 449 B

12345678910111213141516171819202122
  1. # Tomcat
  2. server:
  3. tomcat:
  4. uri-encoding: UTF-8
  5. max-threads: 1000
  6. min-spare-threads: 30
  7. port: 9999
  8. spring:
  9. # 环境 dev|test
  10. profiles:
  11. active: dev
  12. session:
  13. store-type: none
  14. # jackson时间格式化
  15. jackson:
  16. time-zone: GMT+8
  17. date-format: yyyy-MM-dd HH:mm:ss
  18. http:
  19. multipart:
  20. max-file-size: 100MB
  21. max-request-size: 100MB
  22. enabled: true