| | |
| | | # 项目相关配置 |
| | | ycl: |
| | | # 名称 |
| | | name: RuoYi |
| | | # 版本 |
| | | version: 1.0.0 |
| | | # 版权年份 |
| | | copyrightYear: 2024 |
| | | # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath) |
| | | profile: D:/ruoyi/uploadPath |
| | | # 获取ip地址开关 |
| | | addressEnabled: false |
| | | # 验证码类型 math 数字计算 char 字符验证 |
| | | captchaType: math |
| | | |
| | | |
| | | # mybatis plus配置 |
| | | mybatis-plus: |
| | | mapper-locations: classpath*:mapper/**/*.xml |
| | | # 实体扫描,多个package用逗号或者分号分隔 |
| | | typeAliasesPackage: com.hnct.**.domain |
| | | typeAliasesPackage: com.ycl.**.domain |
| | | configuration: |
| | | default-enum-type-handler: org.apache.ibatis.type.EnumOrdinalTypeHandler # 通用枚举处理器 |
| | | # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 日志打印 |
| | |
| | | # 令牌自定义标识 |
| | | header: Authorization |
| | | # 令牌密钥 |
| | | secret: abcdefghijklmnopqrstuvwxyz |
| | | secret: gfabcdefghijklmnopqrstuvwxyz12 |
| | | # 令牌有效期(默认30分钟) |
| | | expireTime: 30 |
| | | |
| | |
| | | excludes: /system/notice |
| | | # 匹配链接 |
| | | urlPatterns: /system/*,/monitor/*,/tool/* |
| | | |
| | | |
| | | |
| | | # 工作流 Flowable 配置 |
| | | flowable: |
| | | database-schema: project_management |
| | | database-schema-update: true # 自动更新flowable表结构,第一次连接数据库时可以设置为true |
| | | # 关闭各个模块生成表,目前只使用工作流基础表 |
| | | idm: |
| | | enabled: false |
| | | cmmn: |
| | | enabled: false |
| | | dmn: |
| | | enabled: false |
| | | app: |
| | | enabled: false |