jeecg.yaml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. server:
  2. tomcat:
  3. max-swallow-size: -1
  4. error:
  5. include-exception: true
  6. include-stacktrace: ALWAYS
  7. include-message: ALWAYS
  8. compression:
  9. enabled: true
  10. min-response-size: 1024
  11. mime-types: application/javascript,application/json,application/xml,text/html,text/xml,text/plain,text/css,image/*
  12. management:
  13. health:
  14. mail:
  15. enabled: false
  16. endpoints:
  17. web:
  18. exposure:
  19. include: "*"
  20. health:
  21. sensitive: true
  22. endpoint:
  23. health:
  24. show-details: ALWAYS
  25. spring:
  26. servlet:
  27. multipart:
  28. max-file-size: 10MB
  29. max-request-size: 10MB
  30. mail:
  31. host: smtp.163.com
  32. username: jeecgos@163.com
  33. password: ??
  34. properties:
  35. mail:
  36. smtp:
  37. auth: true
  38. starttls:
  39. enable: true
  40. required: true
  41. quartz:
  42. job-store-type: jdbc
  43. initialize-schema: embedded
  44. auto-startup: false
  45. startup-delay: 1s
  46. overwrite-existing-jobs: true
  47. properties:
  48. org:
  49. quartz:
  50. scheduler:
  51. instanceName: MyScheduler
  52. instanceId: AUTO
  53. jobStore:
  54. class: org.springframework.scheduling.quartz.LocalDataSourceJobStore
  55. driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
  56. tablePrefix: QRTZ_
  57. isClustered: true
  58. misfireThreshold: 12000
  59. clusterCheckinInterval: 15000
  60. threadPool:
  61. class: org.quartz.simpl.SimpleThreadPool
  62. threadCount: 10
  63. threadPriority: 5
  64. threadsInheritContextClassLoaderOfInitializingThread: true
  65. jackson:
  66. date-format: yyyy-MM-dd HH:mm:ss
  67. time-zone: GMT+8
  68. aop:
  69. proxy-target-class: true
  70. activiti:
  71. check-process-definitions: false
  72. async-executor-activate: false
  73. job-executor-activate: false
  74. jpa:
  75. open-in-view: false
  76. freemarker:
  77. suffix: .ftl
  78. content-type: text/html
  79. charset: UTF-8
  80. cache: false
  81. prefer-file-system-access: false
  82. template-loader-path:
  83. - classpath:/templates
  84. mvc:
  85. static-path-pattern: /**
  86. pathmatch:
  87. matching-strategy: ant_path_matcher
  88. resource:
  89. static-locations: classpath:/static/,classpath:/public/
  90. autoconfigure:
  91. exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
  92. mybatis-plus:
  93. mapper-locations: classpath*:org/jeecg/modules/**/xml/*Mapper.xml
  94. global-config:
  95. banner: false
  96. db-config:
  97. id-type: ASSIGN_ID
  98. table-underline: true
  99. configuration:
  100. call-setters-on-nulls: true