xiangpei
2025-07-15 37325b5b629a296230e87d41187742f843c7494c
start/src/main/resources/application.yml
@@ -5,8 +5,9 @@
  # 实体扫描,多个package用逗号或者分号分隔
  typeAliasesPackage: com.ycl.**.domain
  configuration:
    default-enum-type-handler: org.apache.ibatis.type.EnumOrdinalTypeHandler # 通用枚举处理器
  #    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 日志打印
    shrink-whitespaces-in-sql: true #从SQL中删除多余的空格字符
    default-enum-type-handler: com.baomidou.mybatisplus.core.handlers.MybatisEnumTypeHandler # 通用枚举处理器
#    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 日志打印
  global-config:
    db-config:
      id-type: auto
@@ -40,6 +41,7 @@
logging:
  level:
    com.ruoyi: debug
    com.ycl: debug
    org.springframework: warn
    org.flowable.engine.impl.persistence.entity.*: debug
    org.flowable.task.service.impl.persistence.entity.*: debug
@@ -64,14 +66,18 @@
  servlet:
    multipart:
      # 单个文件大小
      max-file-size: 10MB
      max-file-size: 1024MB
      # 设置总上传的文件大小
      max-request-size: 20MB
      max-request-size: 1024MB
  # 服务模块
  devtools:
    restart:
      # 热部署开关
      enabled: true
      enabled: false
  # 日期格式
  jackson:
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8
# token配置
token:
@@ -105,17 +111,3 @@
  urlPatterns: /system/*,/monitor/*,/tool/*
# 工作流 Flowable 配置,flowable完整的配置,参见:@see https://www.flowable.com/open-source/docs/bpmn/ch05a-Spring-Boot/#flowable-application-properties
flowable:
  database-schema-update: true  # 自动更新flowable表结构,第一次连接数据库时可以设置为true
#  # 关闭各个模块生成表,目前只使用工作流基础表
  idm:  # idm是flowable的身份管理模块:即用户、认证、权限等
    enabled: false
#  cmmn: # cmmn是flowable的案例管理模块,体现在flowable-ui中的:流程建模器、UI,@see https://www.flowable.com/open-source/docs/cmmn/ch06-cmmn
#    enabled: true
#  dmn: # dmn是flowable的决策模型,体现在flowable-ui中的决策表  @see https://www.flowable.com/open-source/docs/dmn/ch06-DMN-Introduction
#    enabled: false
#  app: # app的功能是为flowable在spring中高效运行而提供了很多bean,与flowable本身的内容无关
#    enabled: true
#  check-process-definitions: true