| | |
| | | # 项目相关配置 |
| | | ruoyi: |
| | | # 名称 |
| | | name: RuoYi |
| | | name: RuoYi-Vue-Plus |
| | | # 版本 |
| | | version: 3.0.0 |
| | | version: ${ruoyi-vue-plus.version} |
| | | # 版权年份 |
| | | copyrightYear: 2019 |
| | | copyrightYear: 2022 |
| | | # 实例演示开关 |
| | | demoEnabled: true |
| | | # 文件路径,使用jvm系统变量,兼容windows和linux; |
| | | profile: ${user.home}/ruoyi/uploadPath |
| | | # 获取ip地址开关 |
| | | addressEnabled: false |
| | | addressEnabled: true |
| | | # 缓存懒加载 |
| | | cacheLazy: false |
| | | |
| | | captcha: |
| | | # 页面 <参数设置> 可开启关闭 验证码校验 |
| | | # 验证码类型 math 数组计算 char 字符验证 |
| | | captchaType: math |
| | | type: MATH |
| | | # line 线段干扰 circle 圆圈干扰 shear 扭曲干扰 |
| | | category: CIRCLE |
| | | # 数字验证码位数 |
| | | numberLength: 1 |
| | | # 字符验证码长度 |
| | | charLength: 4 |
| | | |
| | | # 开发环境配置 |
| | | server: |
| | |
| | | servlet: |
| | | # 应用的访问路径 |
| | | context-path: / |
| | | # undertow 配置 |
| | | undertow: |
| | | # 设置IO线程数, 它主要执行非阻塞的任务,它们会负责多个连接, 默认设置每个CPU核心一个线程 |
| | | io-threads: 8 |
| | | # 阻塞任务线程池, 当执行类似servlet请求阻塞操作, undertow会从这个线程池中取得线程,它的值设置取决于系统的负载 |
| | | worker-threads: 256 |
| | | # HTTP post内容的最大大小。当值为-1时,默认值为大小是无限的 |
| | | max-http-post-size: -1 |
| | | # 以下的配置会影响buffer,这些buffer会用于服务器连接的IO操作,有点类似netty的池化内存管理 |
| | | # 每块buffer的空间大小,越小的空间被利用越充分 |
| | | buffer-size: 512 |
| | | # 是否分配的直接内存 |
| | | direct-buffers: true |
| | | |
| | | threads: |
| | | # 设置IO线程数, 它主要执行非阻塞的任务,它们会负责多个连接, 默认设置每个CPU核心一个线程 |
| | | io: 8 |
| | | # 阻塞任务线程池, 当执行类似servlet请求阻塞操作, undertow会从这个线程池中取得线程,它的值设置取决于系统的负载 |
| | | worker: 256 |
| | | |
| | | # 日志配置 |
| | | logging: |
| | | level: |
| | | com.ruoyi: debug |
| | | com.ruoyi: @logging.level@ |
| | | org.springframework: warn |
| | | config: classpath:logback.xml |
| | | |
| | | # Spring配置 |
| | | spring: |
| | | application: |
| | | name: ${ruoyi.name} |
| | | # 资源信息 |
| | | messages: |
| | | # 国际化资源文件路径 |
| | | basename: i18n/messages |
| | | profiles: |
| | | active: dev |
| | | profiles: |
| | | active: @profiles.active@ |
| | | # 文件上传 |
| | | servlet: |
| | | multipart: |
| | | # 单个文件大小 |
| | | max-file-size: 10MB |
| | | # 设置总上传的文件大小 |
| | | max-request-size: 20MB |
| | | multipart: |
| | | # 单个文件大小 |
| | | max-file-size: 10MB |
| | | # 设置总上传的文件大小 |
| | | max-request-size: 20MB |
| | | # 服务模块 |
| | | devtools: |
| | | restart: |
| | | # 热部署开关 |
| | | enabled: true |
| | | jackson: |
| | | # 日期格式化 |
| | | date-format: yyyy-MM-dd HH:mm:ss |
| | | serialization: |
| | | # 格式化输出 |
| | | indent_output: false |
| | | # 忽略无法转换的对象 |
| | | fail_on_empty_beans: false |
| | | deserialization: |
| | | # 允许对象忽略json中不存在的属性 |
| | | fail_on_unknown_properties: false |
| | | |
| | | # token配置 |
| | | token: |
| | | # 令牌自定义标识 |
| | | header: Authorization |
| | | # 令牌密钥 |
| | | secret: abcdefghijklmnopqrstuvwxyz |
| | | # 令牌有效期(默认30分钟) |
| | | expireTime: 30 |
| | | # Sa-Token配置 |
| | | sa-token: |
| | | # token名称 (同时也是cookie名称) |
| | | token-name: Authorization |
| | | # token有效期 设为一天 (必定过期) 单位: 秒 |
| | | timeout: 86400 |
| | | # token临时有效期 (指定时间无操作就过期) 单位: 秒 |
| | | activity-timeout: 1800 |
| | | # 是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录) |
| | | is-concurrent: true |
| | | # 在多人登录同一账号时,是否共用一个token (为true时所有登录共用一个token, 为false时每次登录新建一个token) |
| | | is-share: false |
| | | # 是否尝试从header里读取token |
| | | is-read-head: true |
| | | # 是否尝试从cookie里读取token |
| | | is-read-cookie: false |
| | | # token前缀 |
| | | token-prefix: "Bearer" |
| | | # jwt秘钥 |
| | | jwt-secret-key: abcdefghijklmnopqrstuvwxyz |
| | | # 是否输出操作日志 |
| | | is-log: true |
| | | |
| | | # MyBatis配置 |
| | | # security配置 |
| | | security: |
| | | # 排除路径 |
| | | excludes: |
| | | # 静态资源 |
| | | - /*.html |
| | | - /**/*.html |
| | | - /**/*.css |
| | | - /**/*.js |
| | | # swagger 文档配置 |
| | | - /favicon.ico |
| | | - /*/api-docs |
| | | - /*/api-docs/** |
| | | # druid 监控配置 |
| | | - /druid/** |
| | | # actuator 监控配置 |
| | | - /actuator |
| | | - /actuator/** |
| | | |
| | | # MyBatisPlus配置 |
| | | # https://baomidou.com/config/ |
| | | mybatis-plus: |
| | | mapper-locations: classpath*:mapper/**/*Mapper.xml |
| | | #实体扫描,多个package用逗号或者分号分隔 |
| | | # 不支持多包, 如有需要可在注解配置 或 提升扫包等级 |
| | | # 例如 com.**.**.mapper |
| | | mapperPackage: com.ruoyi.**.mapper |
| | | # 对应的 XML 文件位置 |
| | | mapperLocations: classpath*:mapper/**/*Mapper.xml |
| | | # 实体扫描,多个package用逗号或者分号分隔 |
| | | typeAliasesPackage: com.ruoyi.**.domain |
| | | # 启动时是否检查 MyBatis XML 文件的存在,默认不检查 |
| | | checkConfigLocation: false |
| | | configuration: |
| | | map-underscore-to-camel-case: true |
| | | cache-enabled: true |
| | | # 自动驼峰命名规则(camel case)映射 |
| | | mapUnderscoreToCamelCase: true |
| | | # MyBatis 自动映射策略 |
| | | # NONE:不启用 PARTIAL:只对非嵌套 resultMap 自动映射 FULL:对所有 resultMap 自动映射 |
| | | autoMappingBehavior: PARTIAL |
| | | # MyBatis 自动映射时未知列或未知属性处理策 |
| | | # NONE:不做处理 WARNING:打印相关警告 FAILING:抛出异常和详细信息 |
| | | autoMappingUnknownColumnBehavior: NONE |
| | | # 更详细的日志输出 会有性能损耗 org.apache.ibatis.logging.stdout.StdOutImpl |
| | | # 关闭日志记录 (可单纯使用 p6spy 分析) org.apache.ibatis.logging.nologging.NoLoggingImpl |
| | | # 默认日志输出 org.apache.ibatis.logging.slf4j.Slf4jImpl |
| | | logImpl: org.apache.ibatis.logging.nologging.NoLoggingImpl |
| | | global-config: |
| | | banner: false |
| | | #刷新mapper 调试神器 |
| | | refresh: true |
| | | db-config: |
| | | #主键类型 0:"数据库ID自增", 1:"用户输入ID",2:"全局唯一ID (数字类型唯一ID)", 3:"全局唯一ID UUID"; |
| | | id-type: auto |
| | | #字段策略 0:"忽略判断",1:"非 NULL 判断"),2:"非空判断" |
| | | field-strategy: not_empty |
| | | #驼峰下划线转换 |
| | | db-column-underline: true |
| | | #数据库大写下划线转换 |
| | | #capital-mode: true |
| | | #序列接口实现类配置 |
| | | #key-generator: com.baomidou.springboot.xxx |
| | | #逻辑删除配置 |
| | | logic-delete-value: 1 |
| | | logic-not-delete-value: 0 |
| | | #数据库类型 |
| | | db-type: mysql |
| | | #自定义SQL注入器 |
| | | #sql-injector: com.baomidou.mybatisplus.mapper.LogicSqlInjector |
| | | #自定义填充策略接口实现 |
| | | #meta-object-handler: com.baomidou.springboot.xxx |
| | | |
| | | # PageHelper分页插件 |
| | | pagehelper: |
| | | helperDialect: mysql |
| | | reasonable: true |
| | | supportMethodsArguments: true |
| | | params: count=countSql |
| | | # 是否打印 Logo banner |
| | | banner: true |
| | | dbConfig: |
| | | # 主键类型 |
| | | # AUTO 自增 NONE 空 INPUT 用户输入 ASSIGN_ID 雪花 ASSIGN_UUID 唯一 UUID |
| | | idType: ASSIGN_ID |
| | | # 逻辑已删除值 |
| | | logicDeleteValue: 2 |
| | | # 逻辑未删除值 |
| | | logicNotDeleteValue: 0 |
| | | # 字段验证策略之 insert,在 insert 的时候的字段验证策略 |
| | | # IGNORED 忽略 NOT_NULL 非NULL NOT_EMPTY 非空 DEFAULT 默认 NEVER 不加入 SQL |
| | | insertStrategy: NOT_NULL |
| | | # 字段验证策略之 update,在 update 的时候的字段验证策略 |
| | | updateStrategy: NOT_NULL |
| | | # 字段验证策略之 select,在 select 的时候的字段验证策略既 wrapper 根据内部 entity 生成的 where 条件 |
| | | where-strategy: NOT_NULL |
| | | |
| | | # Swagger配置 |
| | | swagger: |
| | | # 是否开启swagger |
| | | enabled: true |
| | | # 请求前缀 |
| | | pathMapping: /dev-api |
| | | info: |
| | | # 标题 |
| | | title: '标题:${ruoyi.name}后台管理系统_接口文档' |
| | | # 描述 |
| | | description: '描述:用于管理集团旗下公司的人员信息,具体包括XXX,XXX模块...' |
| | | # 版本 |
| | | version: '版本号: ${ruoyi-vue-plus.version}' |
| | | # 作者信息 |
| | | contact: |
| | | name: Lion Li |
| | | email: crazylionli@163.com |
| | | url: https://gitee.com/JavaLionLi/RuoYi-Vue-Plus |
| | | components: |
| | | # 鉴权方式配置 |
| | | security-schemes: |
| | | apiKey: |
| | | type: APIKEY |
| | | in: HEADER |
| | | name: ${sa-token.token-name} |
| | | |
| | | springdoc: |
| | | #这里定义了两个分组,可定义多个,也可以不定义 |
| | | group-configs: |
| | | - group: 1.演示模块 |
| | | packages-to-scan: com.ruoyi.demo |
| | | - group: 2.系统模块 |
| | | packages-to-scan: com.ruoyi.web |
| | | - group: 3.代码生成模块 |
| | | packages-to-scan: com.ruoyi.generator |
| | | |
| | | # 防止XSS攻击 |
| | | xss: |
| | | xss: |
| | | # 过滤开关 |
| | | enabled: true |
| | | # 排除链接(多个用逗号分隔) |
| | | excludes: /system/notice/* |
| | | excludes: /system/notice |
| | | # 匹配链接 |
| | | urlPatterns: /system/*,/monitor/*,/tool/* |
| | | |
| | | # 全局线程池相关配置 |
| | | thread-pool: |
| | | # 是否开启线程池 |
| | | enabled: false |
| | | # 队列最大长度 |
| | | queueCapacity: 128 |
| | | # 线程池维护线程所允许的空闲时间 |
| | | keepAliveSeconds: 300 |
| | | |
| | | --- # redisson 缓存配置 |
| | | redisson: |
| | | cacheGroup: |
| | | # 用例: @Cacheable(cacheNames="groupId", key="#XXX") 方可使用缓存组配置 |
| | | - groupId: redissonCacheMap |
| | | # 组过期时间(脚本监控) |
| | | ttl: 60000 |
| | | # 组最大空闲时间(脚本监控) |
| | | maxIdleTime: 60000 |
| | | # 组最大长度 |
| | | maxSize: 0 |
| | | - groupId: testCache |
| | | ttl: 1000 |
| | | maxIdleTime: 500 |
| | | |
| | | --- # 分布式锁 lock4j 全局配置 |
| | | lock4j: |
| | | # 获取分布式锁超时时间,默认为 3000 毫秒 |
| | | acquire-timeout: 3000 |
| | | # 分布式锁的超时时间,默认为 30 毫秒 |
| | | expire: 30000 |
| | | |
| | | --- # Actuator 监控端点的配置项 |
| | | management: |
| | | endpoints: |
| | | web: |
| | | exposure: |
| | | include: '*' |
| | | endpoint: |
| | | health: |
| | | show-details: ALWAYS |
| | | logfile: |
| | | external-file: ./logs/sys-console.log |