application.yaml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. spring:
  2. application:
  3. name: feifan-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. --- #################### 接口文档配置 ####################
  32. springdoc:
  33. api-docs:
  34. enabled: true
  35. path: /v3/api-docs
  36. swagger-ui:
  37. enabled: true
  38. path: /swagger-ui
  39. default-flat-param-object: true # 参见 https://doc.xiaominfo.com/docs/faq/v4/knife4j-parameterobject-flat-param 文档
  40. knife4j:
  41. enable: true
  42. setting:
  43. language: zh_cn
  44. # 工作流 Flowable 配置
  45. flowable:
  46. # 1. false: 默认值,Flowable 启动时,对比数据库表中保存的版本,如果不匹配。将抛出异常
  47. # 2. true: 启动时会对数据库中所有表进行更新操作,如果表存在,不做处理,反之,自动创建表
  48. # 3. create_drop: 启动时自动创建表,关闭时自动删除表
  49. # 4. drop_create: 启动时,删除旧表,再创建新表
  50. database-schema-update: true # 设置为 false,可通过 https://github.com/flowable/flowable-sql 初始化
  51. db-history-used: true # flowable6 默认 true 生成信息表,无需手动设置
  52. check-process-definitions: false # 设置为 false,禁用 /resources/processes 自动部署 BPMN XML 流程
  53. history-level: full # full:保存历史数据的最高级别,可保存全部流程相关细节,包括流程流转各节点参数
  54. # MyBatis Plus 的配置项
  55. mybatis-plus:
  56. configuration:
  57. map-underscore-to-camel-case: true # 虽然默认为 true ,但是还是显示去指定下。
  58. global-config:
  59. db-config:
  60. id-type: NONE # “智能”模式,基于 IdTypeEnvironmentPostProcessor + 数据源的类型,自动适配成 AUTO、INPUT 模式。
  61. # id-type: AUTO # 自增 ID,适合 MySQL 等直接自增的数据库
  62. # id-type: INPUT # 用户输入 ID,适合 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库
  63. # id-type: ASSIGN_ID # 分配 ID,默认使用雪花算法。注意,Oracle、PostgreSQL、Kingbase、DB2、H2 数据库时,需要去除实体类上的 @KeySequence 注解
  64. logic-delete-value: 1 # 逻辑已删除值(默认为 1)
  65. logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
  66. banner: false # 关闭控制台的 Banner 打印
  67. type-aliases-package: ${feifan.info.base-package}.module.*.dal.dataobject
  68. encryptor:
  69. password: XDV71a+xqStEA3WH # 加解密的秘钥,可使用 https://www.imaegoo.com/2020/aes-key-generator/ 网站生成
  70. mybatis-plus-join:
  71. banner: false # 是否打印 mybatis plus join banner,默认true
  72. sub-table-logic: true # 全局启用副表逻辑删除,默认true。关闭后关联查询不会加副表逻辑删除
  73. ms-cache: true # 拦截器MappedStatement缓存,默认 true
  74. table-alias: t # 表别名(默认 t)
  75. logic-del-type: on # 副表逻辑删除条件的位置,支持 WHERE、ON,默认 ON
  76. # Spring Data Redis 配置
  77. spring:
  78. data:
  79. redis:
  80. repositories:
  81. enabled: false # 项目未使用到 Spring Data Redis 的 Repository,所以直接禁用,保证启动速度
  82. --- #################### 验证码相关配置 ####################
  83. aj:
  84. captcha:
  85. jigsaw: classpath:images/jigsaw # 滑动验证,底图路径,不配置将使用默认图片;以 classpath: 开头,取 resource 目录下路径
  86. pic-click: classpath:images/pic-click # 滑动验证,底图路径,不配置将使用默认图片;以 classpath: 开头,取 resource 目录下路径
  87. cache-type: redis # 缓存 local/redis...
  88. cache-number: 1000 # local 缓存的阈值,达到这个值,清除缓存
  89. timing-clear: 180 # local定时清除过期缓存(单位秒),设置为0代表不执行
  90. type: blockPuzzle # 验证码类型 default两种都实例化。 blockPuzzle 滑块拼图 clickWord 文字点选
  91. water-mark: 非繁源码 # 右下角水印文字(我的水印),可使用 https://tool.chinaz.com/tools/unicode.aspx 中文转 Unicode,Linux 可能需要转 unicode
  92. interference-options: 0 # 滑动干扰项(0/1/2)
  93. req-frequency-limit-enable: false # 接口请求次数一分钟限制是否开启 true|false
  94. req-get-lock-limit: 5 # 验证失败 5 次,get接口锁定
  95. req-get-lock-seconds: 10 # 验证失败后,锁定时间间隔
  96. req-get-minute-limit: 30 # get 接口一分钟内请求数限制
  97. req-check-minute-limit: 60 # check 接口一分钟内请求数限制
  98. req-verify-minute-limit: 60 # verify 接口一分钟内请求数限制
  99. --- #################### 消息队列相关 ####################
  100. # rocketmq 配置项,对应 RocketMQProperties 配置类
  101. rocketmq:
  102. # Producer 配置项
  103. producer:
  104. group: ${spring.application.name}_PRODUCER # 生产者分组
  105. spring:
  106. # Kafka 配置项,对应 KafkaProperties 配置类
  107. kafka:
  108. # Kafka Producer 配置项
  109. producer:
  110. acks: 1 # 0-不应答。1-leader 应答。all-所有 leader 和 follower 应答。
  111. retries: 3 # 发送失败时,重试发送的次数
  112. value-serializer: org.springframework.kafka.support.serializer.JsonSerializer # 消息的 value 的序列化
  113. # Kafka Consumer 配置项
  114. consumer:
  115. auto-offset-reset: earliest # 设置消费者分组最初的消费进度为 earliest 。可参考博客 https://blog.csdn.net/lishuangzhe7047/article/details/74530417 理解
  116. value-deserializer: org.springframework.kafka.support.serializer.JsonDeserializer
  117. properties:
  118. spring.json.trusted.packages: '*'
  119. # Kafka Consumer Listener 监听器配置
  120. listener:
  121. missing-topics-fatal: false # 消费监听接口监听的主题不存在时,默认会报错。所以通过设置为 false ,解决报错
  122. --- #################### 非繁相关配置 ####################
  123. feifan:
  124. info:
  125. version: 1.0.0
  126. base-package: cn.newfeifan.mall
  127. web:
  128. admin-ui:
  129. url: http://dashboard.feifan.iocoder.cn # Admin 管理后台 UI 的地址
  130. security:
  131. permit-all_urls:
  132. - /admin-api/mp/open/** # 微信公众号开放平台,微信回调接口,不需要登录
  133. websocket:
  134. enable: true # websocket的开关
  135. path: /infra/ws # 路径
  136. sender-type: local # 消息发送的类型,可选值为 local、redis、rocketmq、kafka、rabbitmq
  137. sender-rocketmq:
  138. topic: ${spring.application.name}-websocket # 消息发送的 RocketMQ Topic
  139. consumer-group: ${spring.application.name}-websocket-consumer # 消息发送的 RocketMQ Consumer Group
  140. sender-rabbitmq:
  141. exchange: ${spring.application.name}-websocket-exchange # 消息发送的 RabbitMQ Exchange
  142. queue: ${spring.application.name}-websocket-queue # 消息发送的 RabbitMQ Queue
  143. sender-kafka:
  144. topic: ${spring.application.name}-websocket # 消息发送的 Kafka Topic
  145. consumer-group: ${spring.application.name}-websocket-consumer # 消息发送的 Kafka Consumer Group
  146. swagger:
  147. title: 非繁快速开发平台
  148. description: 提供管理后台、用户 App 的所有功能
  149. version: ${feifan.info.version}
  150. url: ${feifan.web.admin-ui.url}
  151. email: xingyu4j@vip.qq.com
  152. license: MIT
  153. license-url: https://gitee.com/zhijiantianya/ruoyi-vue-pro/blob/master/LICENSE
  154. captcha:
  155. enable: true # 验证码的开关,默认为 true
  156. codegen:
  157. base-package: ${feifan.info.base-package}
  158. db-schemas: ${spring.datasource.dynamic.datasource.master.name}
  159. front-type: 10 # 前端模版的类型,参见 CodegenFrontTypeEnum 枚举类
  160. error-code: # 错误码相关配置项
  161. constants-class-list:
  162. - cn.newfeifan.mall.module.bpm.enums.ErrorCodeConstants
  163. - cn.newfeifan.mall.module.infra.enums.ErrorCodeConstants
  164. - cn.newfeifan.mall.module.member.enums.ErrorCodeConstants
  165. - cn.newfeifan.mall.module.pay.enums.ErrorCodeConstants
  166. - cn.newfeifan.mall.module.system.enums.ErrorCodeConstants
  167. - cn.newfeifan.mall.module.mp.enums.ErrorCodeConstants
  168. tenant: # 多租户相关配置项
  169. shop:
  170. enable: false
  171. enable: false
  172. ignore-urls:
  173. - /admin-api/system/tenant/get-id-by-name # 基于名字获取租户,不许带租户编号
  174. - /admin-api/system/tenant/get-by-website # 基于域名获取租户,不许带租户编号
  175. - /admin-api/system/captcha/get # 获取图片验证码,和租户无关
  176. - /admin-api/system/captcha/check # 校验图片验证码,和租户无关
  177. - /admin-api/infra/file/*/get/** # 获取图片,和租户无关
  178. - /admin-api/system/sms/callback/* # 短信回调接口,无法带上租户编号
  179. - /admin-api/pay/notify/** # 支付回调通知,不携带租户编号
  180. - /jmreport/* # 积木报表,无法携带租户编号
  181. - /ureport/* # UReport 报表,无法携带租户编号
  182. - /admin-api/mp/open/** # 微信公众号开放平台,微信回调接口,无法携带租户编号
  183. ignore-tables:
  184. - system_tenant
  185. - system_tenant_package
  186. - system_dict_data
  187. - system_dict_type
  188. - system_error_code
  189. - system_menu
  190. - system_sms_channel
  191. - system_sms_template
  192. - system_sms_log
  193. - system_sensitive_word
  194. - system_oauth2_client
  195. - system_mail_account
  196. - system_mail_template
  197. - system_mail_log
  198. - system_notify_template
  199. - infra_codegen_column
  200. - infra_codegen_table
  201. - infra_test_demo
  202. - infra_config
  203. - infra_file_config
  204. - infra_file
  205. - infra_file_content
  206. - infra_job
  207. - infra_job_log
  208. - infra_job_log
  209. - infra_data_source_config
  210. - jimu_dict
  211. - jimu_dict_item
  212. - jimu_report
  213. - jimu_report_data_source
  214. - jimu_report_db
  215. - jimu_report_db_field
  216. - jimu_report_db_param
  217. - jimu_report_link
  218. - jimu_report_map
  219. - jimu_report_share
  220. - report_ureport_data
  221. - rep_demo_dxtj
  222. - rep_demo_employee
  223. - rep_demo_gongsi
  224. - rep_demo_jianpiao
  225. - tmp_report_data_1
  226. - tmp_report_data_income
  227. sms-code: # 短信验证码相关的配置项
  228. expire-times: 10m
  229. send-frequency: 1m
  230. send-maximum-quantity-per-day: 10
  231. begin-code: 9999 # 这里配置 9999 的原因是,测试方便。
  232. end-code: 9999 # 这里配置 9999 的原因是,测试方便。
  233. trade:
  234. order:
  235. app-id: 1 # 商户编号
  236. pay-expire-time: 2h # 支付的过期时间
  237. receive-expire-time: 14d # 收货的过期时间
  238. comment-expire-time: 7d # 评论的过期时间
  239. express:
  240. client: kd_niao
  241. kd-niao:
  242. api-key: cb022f1e-48f1-4c4a-a723-9001ac9676b8
  243. business-id: 1809751
  244. kd100:
  245. key: pLXUGAwK5305
  246. customer: E77DF18BE109F454A5CD319E44BF5177
  247. debug: false
  248. # 积木报表配置
  249. jeecg:
  250. jmreport:
  251. saas-mode: tenant
  252. # UReport 配置
  253. ureport:
  254. provider:
  255. database:
  256. disabled: false