application.yaml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. # throw-exception-if-no-handler-found: true # 404 错误时抛出异常,方便统一处理
  18. # static-path-pattern: /static/** # 静态资源路径; 注意:如果不配置,则 throw-exception-if-no-handler-found 不生效!!! TODO 芋艿:不能配置,会导致 swagger 不生效
  19. # Jackson 配置项
  20. jackson:
  21. serialization:
  22. write-dates-as-timestamps: true # 设置 Date 的格式,使用时间戳
  23. write-date-timestamps-as-nanoseconds: false # 设置不使用 nanoseconds 的格式。例如说 1611460870.401,而是直接 1611460870401
  24. write-durations-as-timestamps: true # 设置 Duration 的格式,使用时间戳
  25. fail-on-empty-beans: false # 允许序列化无属性的 Bean
  26. # Cache 配置项
  27. cache:
  28. type: REDIS
  29. redis:
  30. time-to-live: 1h # 设置过期时间为 1 小时
  31. springdoc:
  32. show-actuator: true
  33. swagger-ui:
  34. path: /swagger-ui
  35. api-docs:
  36. path: /v3/api-docs
  37. knife4j:
  38. enable: true
  39. setting:
  40. language: zh_cn
  41. # 工作流 Flowable 配置
  42. flowable:
  43. # 1. false: 默认值,Flowable 启动时,对比数据库表中保存的版本,如果不匹配。将抛出异常
  44. # 2. true: 启动时会对数据库中所有表进行更新操作,如果表存在,不做处理,反之,自动创建表
  45. # 3. create_drop: 启动时自动创建表,关闭时自动删除表
  46. # 4. drop_create: 启动时,删除旧表,再创建新表
  47. database-schema-update: true # 设置为 false,可通过 https://github.com/flowable/flowable-sql 初始化
  48. db-history-used: true # flowable6 默认 true 生成信息表,无需手动设置
  49. check-process-definitions: false # 设置为 false,禁用 /resources/processes 自动部署 BPMN XML 流程
  50. history-level: full # full:保存历史数据的最高级别,可保存全部流程相关细节,包括流程流转各节点参数
  51. # MyBatis Plus 的配置项
  52. mybatis-plus:
  53. configuration:
  54. map-underscore-to-camel-case: true # 虽然默认为 true ,但是还是显示去指定下。
  55. global-config:
  56. db-config:
  57. id-type: NONE # “智能”模式,基于 IdTypeEnvironmentPostProcessor + 数据源的类型,自动适配成 AUTO、INPUT 模式。
  58. # id-type: AUTO # 自增 ID,适合 MySQL 等直接自增的数据库
  59. # id-type: INPUT # 用户输入 ID,适合 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库
  60. # id-type: ASSIGN_ID # 分配 ID,默认使用雪花算法。注意,Oracle、PostgreSQL、Kingbase、DB2、H2 数据库时,需要去除实体类上的 @KeySequence 注解
  61. logic-delete-value: 1 # 逻辑已删除值(默认为 1)
  62. logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
  63. type-aliases-package: ${yudao.info.base-package}.module.*.dal.dataobject
  64. encryptor:
  65. password: XDV71a+xqStEA3WH # 加解密的秘钥,可使用 https://www.imaegoo.com/2020/aes-key-generator/ 网站生成
  66. --- #################### 验证码相关配置 ####################
  67. aj:
  68. captcha:
  69. jigsaw: classpath:images/jigsaw # 滑动验证,底图路径,不配置将使用默认图片;以 classpath: 开头,取 resource 目录下路径
  70. pic-click: classpath:images/pic-click # 滑动验证,底图路径,不配置将使用默认图片;以 classpath: 开头,取 resource 目录下路径
  71. cache-type: redis # 缓存 local/redis...
  72. cache-number: 1000 # local 缓存的阈值,达到这个值,清除缓存
  73. timing-clear: 180 # local定时清除过期缓存(单位秒),设置为0代表不执行
  74. type: blockPuzzle # 验证码类型 default两种都实例化。 blockPuzzle 滑块拼图 clickWord 文字点选
  75. water-mark: 芋道源码 # 右下角水印文字(我的水印),可使用 https://tool.chinaz.com/tools/unicode.aspx 中文转 Unicode,Linux 可能需要转 unicode
  76. interference-options: 0 # 滑动干扰项(0/1/2)
  77. req-frequency-limit-enable: false # 接口请求次数一分钟限制是否开启 true|false
  78. req-get-lock-limit: 5 # 验证失败 5 次,get接口锁定
  79. req-get-lock-seconds: 10 # 验证失败后,锁定时间间隔
  80. req-get-minute-limit: 30 # get 接口一分钟内请求数限制
  81. req-check-minute-limit: 60 # check 接口一分钟内请求数限制
  82. req-verify-minute-limit: 60 # verify 接口一分钟内请求数限制
  83. --- #################### 芋道相关配置 ####################
  84. yudao:
  85. info:
  86. version: 1.0.0
  87. base-package: cn.iocoder.yudao
  88. web:
  89. admin-ui:
  90. url: http://dashboard.yudao.iocoder.cn # Admin 管理后台 UI 的地址
  91. security:
  92. permit-all_urls:
  93. - /admin-ui/** # /resources/admin-ui 目录下的静态资源
  94. websocket:
  95. enable: true # websocket的开关
  96. path: /websocket/message # 路径
  97. maxOnlineCount: 0 # 最大连接人数
  98. sessionMap: true # 保存sessionMap
  99. swagger:
  100. title: 管理后台
  101. description: 提供管理员管理的所有功能
  102. version: ${yudao.info.version}
  103. base-package: ${yudao.info.base-package}
  104. captcha:
  105. enable: true # 验证码的开关,默认为 true
  106. codegen:
  107. base-package: ${yudao.info.base-package}
  108. db-schemas: ${spring.datasource.dynamic.datasource.master.name}
  109. error-code: # 错误码相关配置项
  110. constants-class-list:
  111. - cn.iocoder.yudao.module.bpm.enums.ErrorCodeConstants
  112. - cn.iocoder.yudao.module.infra.enums.ErrorCodeConstants
  113. - cn.iocoder.yudao.module.member.enums.ErrorCodeConstants
  114. - cn.iocoder.yudao.module.pay.enums.ErrorCodeConstants
  115. - cn.iocoder.yudao.module.system.enums.ErrorCodeConstants
  116. tenant: # 多租户相关配置项
  117. enable: true
  118. ignore-urls:
  119. - /admin-api/system/tenant/get-id-by-name # 基于名字获取租户,不许带租户编号
  120. - /admin-api/system/captcha/get # 获取图片验证码,和租户无关
  121. - /admin-api/system/captcha/check # 校验图片验证码,和租户无关
  122. - /admin-api/infra/file/*/get/** # 获取图片,和租户无关
  123. - /admin-api/system/sms/callback/* # 短信回调接口,无法带上租户编号
  124. - /admin-api/pay/notify/callback/* # 支付回调通知,不携带租户编号
  125. - /jmreport/* # 积木报表,无法携带租户编号
  126. ignore-tables:
  127. - system_tenant
  128. - system_tenant_package
  129. - system_dict_data
  130. - system_dict_type
  131. - system_error_code
  132. - system_menu
  133. - system_sms_channel
  134. - system_sms_template
  135. - system_sms_log
  136. - system_sensitive_word
  137. - system_oauth2_client
  138. - infra_codegen_column
  139. - infra_codegen_table
  140. - infra_test_demo
  141. - infra_config
  142. - infra_file_config
  143. - infra_file
  144. - infra_file_content
  145. - infra_job
  146. - infra_job_log
  147. - infra_job_log
  148. - infra_data_source_config
  149. - jimu_dict
  150. - jimu_dict_item
  151. - jimu_report
  152. - jimu_report_data_source
  153. - jimu_report_db
  154. - jimu_report_db_field
  155. - jimu_report_db_param
  156. - jimu_report_link
  157. - jimu_report_map
  158. - jimu_report_share
  159. - rep_demo_dxtj
  160. - rep_demo_employee
  161. - rep_demo_gongsi
  162. - rep_demo_jianpiao
  163. - tmp_report_data_1
  164. - tmp_report_data_income
  165. sms-code: # 短信验证码相关的配置项
  166. expire-times: 10m
  167. send-frequency: 1m
  168. send-maximum-quantity-per-day: 10
  169. begin-code: 9999 # 这里配置 9999 的原因是,测试方便。
  170. end-code: 9999 # 这里配置 9999 的原因是,测试方便。
  171. trade:
  172. order:
  173. app-id: 1 # 商户编号
  174. expire-time: 2h # 支付的过期时间
  175. debug: false
  176. #积木报表配置
  177. minidao :
  178. base-package: org.jeecg.modules.jmreport.desreport.dao*
  179. db-type: mysql