Digital Office Automation System Backend
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

application.yml 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --- # server 配置
  2. server:
  3. port: 9100
  4. servlet:
  5. context-path: /xxl-job-admin
  6. spring:
  7. application:
  8. name: ruoyi-xxl-job-admin
  9. profiles:
  10. active: dev
  11. mvc:
  12. servlet:
  13. load-on-startup: 0
  14. static-path-pattern: /static/**
  15. web:
  16. resources:
  17. static-locations: classpath:/static/
  18. --- # mybatis 配置
  19. mybatis:
  20. mapper-locations: classpath:/mybatis-mapper/*Mapper.xml
  21. --- # 页面配置
  22. spring:
  23. freemarker:
  24. charset: UTF-8
  25. request-context-attribute: request
  26. settings:
  27. number_format: 0.##########
  28. suffix: .ftl
  29. templateLoaderPath: classpath:/templates/
  30. --- # Actuator 监控端点的配置项
  31. management:
  32. health:
  33. mail:
  34. enabled: false
  35. endpoints:
  36. web:
  37. exposure:
  38. include: '*'
  39. endpoint:
  40. health:
  41. show-details: ALWAYS
  42. logfile:
  43. external-file: ./logs/ruoyi-xxl-job-admin.log
  44. --- # xxljob系统配置
  45. xxl:
  46. job:
  47. # 鉴权token
  48. accessToken: xxl-job
  49. # 国际化
  50. i18n: zh_CN
  51. # 日志清理
  52. logretentiondays: 30
  53. triggerpool:
  54. fast:
  55. max: 200
  56. slow:
  57. max: 100