jeecg.yaml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. useProperties: true
  60. clusterCheckinInterval: 15000
  61. threadPool:
  62. class: org.quartz.simpl.SimpleThreadPool
  63. threadCount: 10
  64. threadPriority: 5
  65. threadsInheritContextClassLoaderOfInitializingThread: true
  66. jackson:
  67. date-format: yyyy-MM-dd HH:mm:ss
  68. time-zone: GMT+8
  69. aop:
  70. proxy-target-class: true
  71. activiti:
  72. check-process-definitions: false
  73. async-executor-activate: false
  74. job-executor-activate: false
  75. jpa:
  76. open-in-view: false
  77. freemarker:
  78. suffix: .ftl
  79. content-type: text/html
  80. charset: UTF-8
  81. cache: false
  82. prefer-file-system-access: false
  83. template-loader-path:
  84. - classpath:/templates
  85. mvc:
  86. static-path-pattern: /**
  87. pathmatch:
  88. matching-strategy: ant_path_matcher
  89. resource:
  90. static-locations: classpath:/static/,classpath:/public/
  91. autoconfigure:
  92. exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
  93. mybatis-plus:
  94. mapper-locations: classpath*:org/jeecg/modules/**/xml/*Mapper.xml
  95. global-config:
  96. banner: false
  97. db-config:
  98. id-type: ASSIGN_ID
  99. table-underline: true
  100. configuration:
  101. call-setters-on-nulls: true