| | |
| | | # 版本 |
| | | version: ${revision} |
| | | # 版权年份 |
| | | copyrightYear: 2023 |
| | | copyrightYear: 2024 |
| | | |
| | | captcha: |
| | | enable: true |
| | |
| | | level: |
| | | org.dromara: @logging.level@ |
| | | org.springframework: warn |
| | | tech.powerjob.worker.background: warn |
| | | org.mybatis.spring.mapper: error |
| | | config: classpath:logback-plus.xml |
| | | |
| | |
| | | name: ${ruoyi.name} |
| | | threads: |
| | | # 开启虚拟线程 仅jdk21可用 |
| | | # 开启后还需更改 UndertowConfig 虚拟线程配置 |
| | | virtual: |
| | | enabled: false |
| | | # 资源信息 |
| | |
| | | # 设置总上传的文件大小 |
| | | max-request-size: 20MB |
| | | mvc: |
| | | # 设置静态资源路径 防止所有请求都去查静态资源 |
| | | static-path-pattern: /static/** |
| | | format: |
| | | date-time: yyyy-MM-dd HH:mm:ss |
| | | jackson: |
| | |
| | | # swagger 文档配置 |
| | | - /*/api-docs |
| | | - /*/api-docs/** |
| | | # actuator 监控配置 |
| | | - /actuator |
| | | - /actuator/** |
| | | |
| | | # 多租户配置 |
| | | tenant: |
| | |
| | | # MyBatisPlus配置 |
| | | # https://baomidou.com/config/ |
| | | mybatis-plus: |
| | | # 不支持多包, 如有需要可在注解配置 或 提升扫包等级 |
| | | # 例如 com.**.**.mapper |
| | | # 多包名使用 例如 org.dromara.**.mapper,org.xxx.**.mapper |
| | | mapperPackage: org.dromara.**.mapper |
| | | # 对应的 XML 文件位置 |
| | | mapperLocations: classpath*:mapper/**/*Mapper.xml |
| | |
| | | logfile: |
| | | external-file: ./logs/sys-console.log |
| | | |
| | | --- # 默认/推荐使用sse推送 |
| | | sse: |
| | | enabled: true |
| | | path: /resource/sse |
| | | |
| | | --- # websocket |
| | | websocket: |
| | | # 如果关闭 需要和前端开关一起关闭 |
| | | enabled: true |
| | | enabled: false |
| | | # 路径 |
| | | path: /resource/websocket |
| | | # 设置访问源地址 |
| | | allowedOrigins: '*' |
| | | |
| | | --- #flowable配置 |
| | | flowable: |
| | | # 开关 用于启动/停用工作流 |
| | | enabled: true |
| | | process.enabled: ${flowable.enabled} |
| | | eventregistry.enabled: ${flowable.enabled} |
| | | async-executor-activate: false #关闭定时任务JOB |
| | | # 将databaseSchemaUpdate设置为true。当Flowable发现库与数据库表结构不一致时,会自动将数据库表结构升级至新版本。 |
| | | database-schema-update: true |
| | | activity-font-name: 宋体 |
| | | label-font-name: 宋体 |
| | | annotation-font-name: 宋体 |
| | | # 关闭各个模块生成表,目前只使用工作流基础表 |
| | | idm: |
| | | enabled: false |
| | | cmmn: |
| | | enabled: false |
| | | dmn: |
| | | enabled: false |
| | | app: |
| | | enabled: false |