application.yaml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. spring:
  2. application:
  3. name: yudao-server
  4. profiles:
  5. active: local
  6. main:
  7. allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。
  8. # Servlet 配置
  9. servlet:
  10. # 文件上传相关配置项
  11. multipart:
  12. max-file-size: 16MB # 单个文件大小
  13. max-request-size: 32MB # 设置总上传的文件大小
  14. mvc:
  15. pathmatch:
  16. matching-strategy: ANT_PATH_MATCHER # 解决 SpringFox 与 SpringBoot 2.6.x 不兼容的问题,参见 SpringFoxHandlerProviderBeanPostProcessor 类
  17. # Jackson 配置项
  18. jackson:
  19. serialization:
  20. write-dates-as-timestamps: true # 设置 Date 的格式,使用时间戳
  21. write-date-timestamps-as-nanoseconds: false # 设置不使用 nanoseconds 的格式。例如说 1611460870.401,而是直接 1611460870401
  22. write-durations-as-timestamps: true # 设置 Duration 的格式,使用时间戳
  23. fail-on-empty-beans: false # 允许序列化无属性的 Bean
  24. # Cache 配置项
  25. cache:
  26. type: REDIS
  27. redis:
  28. time-to-live: 1h # 设置过期时间为 1 小时
  29. # 工作流 Flowable 配置
  30. flowable:
  31. # 1. false: 默认值,Flowable 启动时,对比数据库表中保存的版本,如果不匹配。将抛出异常
  32. # 2. true: 启动时会对数据库中所有表进行更新操作,如果表存在,不做处理,反之,自动创建表
  33. # 3. create_drop: 启动时自动创建表,关闭时自动删除表
  34. # 4. drop_create: 启动时,删除旧表,再创建新表
  35. database-schema-update: true # 设置为 false,可通过 https://github.com/flowable/flowable-sql 初始化
  36. db-history-used: true # flowable6 默认 true 生成信息表,无需手动设置
  37. check-process-definitions: false # 设置为 false,禁用 /resources/processes 自动部署 BPMN XML 流程
  38. history-level: full # full:保存历史数据的最高级别,可保存全部流程相关细节,包括流程流转各节点参数
  39. # MyBatis Plus 的配置项
  40. mybatis-plus:
  41. configuration:
  42. map-underscore-to-camel-case: true # 虽然默认为 true ,但是还是显示去指定下。
  43. global-config:
  44. db-config:
  45. id-type: NONE # “智能”模式,基于 IdTypeEnvironmentPostProcessor + 数据源的类型,自动适配成 AUTO、INPUT 模式。
  46. # id-type: AUTO # 自增 ID,适合 MySQL 等直接自增的数据库
  47. # id-type: INPUT # 用户输入 ID,适合 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库
  48. # id-type: ASSIGN_ID # 分配 ID,默认使用雪花算法。注意,Oracle、PostgreSQL、Kingbase、DB2、H2 数据库时,需要去除实体类上的 @KeySequence 注解
  49. logic-delete-value: 1 # 逻辑已删除值(默认为 1)
  50. logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
  51. type-aliases-package: ${yudao.info.base-package}.module.*.dal.dataobject
  52. --- #################### 芋道相关配置 ####################
  53. yudao:
  54. info:
  55. version: 1.0.0
  56. base-package: cn.iocoder.yudao
  57. web:
  58. admin-ui:
  59. url: http://dashboard.yudao.iocoder.cn # Admin 管理后台 UI 的地址
  60. security:
  61. permit-all_urls:
  62. - /admin-ui/** # /resources/admin-ui 目录下的静态资源
  63. swagger:
  64. title: 管理后台
  65. description: 提供管理员管理的所有功能
  66. version: ${yudao.info.version}
  67. base-package: ${yudao.info.base-package}
  68. captcha:
  69. timeout: 5m
  70. width: 160
  71. height: 60
  72. codegen:
  73. base-package: ${yudao.info.base-package}
  74. db-schemas: ${spring.datasource.dynamic.datasource.master.name}
  75. error-code: # 错误码相关配置项
  76. constants-class-list:
  77. - cn.iocoder.yudao.module.bpm.enums.ErrorCodeConstants
  78. - cn.iocoder.yudao.module.infra.enums.ErrorCodeConstants
  79. - cn.iocoder.yudao.module.member.enums.ErrorCodeConstants
  80. - cn.iocoder.yudao.module.pay.enums.ErrorCodeConstants
  81. - cn.iocoder.yudao.module.system.enums.ErrorCodeConstants
  82. tenant: # 多租户相关配置项
  83. enable: true
  84. ignore-urls:
  85. - /admin-api/system/tenant/get-id-by-name # 基于名字获取租户,不许带租户编号
  86. - /admin-api/system/captcha/get-image # 获取图片验证码,和租户无关
  87. - /admin-api/infra/file/*/get/** # 获取图片,和租户无关
  88. - /admin-api/system/sms/callback/* # 短信回调接口,无法带上租户编号
  89. - /app-api/pay/order/notify/* # 支付回调通知,不携带租户编号
  90. # - /jmreport/list
  91. - /jmreport/*
  92. ignore-tables:
  93. - system_tenant
  94. - system_tenant_package
  95. - system_dict_data
  96. - system_dict_type
  97. - system_error_code
  98. - system_menu
  99. - system_sms_channel
  100. - system_sms_template
  101. - system_sms_log
  102. - system_sensitive_word
  103. - system_oauth2_client
  104. - infra_codegen_column
  105. - infra_codegen_table
  106. - infra_test_demo
  107. - infra_config
  108. - infra_file_config
  109. - infra_file
  110. - infra_file_content
  111. - infra_job
  112. - infra_job_log
  113. - infra_job_log
  114. - infra_data_source_config
  115. - jimu_dict
  116. - jimu_dict_item
  117. - jimu_report
  118. - jimu_report_data_source
  119. - jimu_report_db
  120. - jimu_report_db_field
  121. - jimu_report_db_param
  122. - jimu_report_link
  123. - jimu_report_map
  124. - jimu_report_share
  125. - rep_demo_dxtj
  126. - rep_demo_employee
  127. - rep_demo_gongsi
  128. - rep_demo_jianpiao
  129. - tmp_report_data_1
  130. - tmp_report_data_income
  131. sms-code: # 短信验证码相关的配置项
  132. expire-times: 10m
  133. send-frequency: 1m
  134. send-maximum-quantity-per-day: 10
  135. begin-code: 9999 # 这里配置 9999 的原因是,测试方便。
  136. end-code: 9999 # 这里配置 9999 的原因是,测试方便。
  137. debug: false
  138. #积木报表配置
  139. minidao :
  140. base-package: org.jeecg.modules.jmreport.desreport.dao*
  141. db-type: mysql