发布 v2.1.1

This commit is contained in:
疯狂的狮子li
2021-05-18 11:50:29 +08:00
parent 403c12eb9c
commit 33c6fdfaa9
19 changed files with 446 additions and 326 deletions

View File

@ -15,13 +15,13 @@ ruoyi:
captcha:
# 验证码类型 math 数组计算 char 字符验证
captchaType: math
type: math
# line 线段干扰 circle 圆圈干扰 shear 扭曲干扰
captchaCategory: circle
category: circle
# 数字验证码位数
captchaNumberLength: 1
numberLength: 1
# 字符验证码长度
captchaCharLength: 4
charLength: 4
# 开发环境配置
server:
@ -187,14 +187,17 @@ mybatis-plus:
swagger:
# 是否开启swagger
enabled: true
# 请求前缀
pathMapping: /dev-api
# 标题
title: '标题RuoYi-Vue-Plus后台管理系统_接口文档'
# 描述
description: '描述:用于管理集团旗下公司的人员信息,具体包括XXX,XXX模块...'
# 版本
version: '版本号: ${ruoyi-vue-plus.version}'
# 作者信息
contact:
name: Lion Li
email: crazylionli@163.com
url: https://gitee.com/JavaLionLi/RuoYi-Vue-Plus
# 防止XSS攻击
xss:
@ -206,7 +209,7 @@ xss:
urlPatterns: /system/*,/monitor/*,/tool/*
# 全局线程池相关配置
threadPoolConfig:
thread-pool:
# 是否开启线程池
enabled: false
# 核心线程池大小
@ -297,4 +300,4 @@ management:
include: '*'
endpoint:
logfile:
external-file: ./logs/sys-console.log
external-file: ./logs/sys-console.log

View File

@ -14,8 +14,14 @@
</appender>
<!-- 控制台输出 -->
<appender name="file_console" class="ch.qos.logback.core.FileAppender">
<appender name="file_console" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/sys-console.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/sys-console.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大 1天 -->
<maxHistory>1</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
<charset>utf-8</charset>