# 项目相关配置
|
ruoyi:
|
# 名称
|
name: RuoYi
|
# 版本
|
version: 4.1.0
|
# 版权年份
|
copyrightYear: 2019
|
# 实例演示开关
|
demoEnabled: true
|
# 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
|
profile: D:/ruoyi/uploadPath
|
# 获取ip地址开关
|
addressEnabled: true
|
|
# 开发环境配置
|
server:
|
# 服务端口
|
port: 80
|
servlet:
|
# 项目contextPath
|
context-path: /
|
tomcat:
|
# tomcat的URI编码
|
uri-encoding: UTF-8
|
# tomcat最大线程数,默认为200
|
max-threads: 800
|
# Tomcat启动初始化的线程数,默认值25
|
min-spare-threads: 30
|
|
# 日志配置
|
logging:
|
level:
|
com.javaweb: debug
|
org.springframework: WARN
|
org.spring.springboot.dao: debug
|
|
# Spring配置
|
spring:
|
# 资源信息
|
messages:
|
# 国际化资源文件路径
|
basename: i18n/messages
|
jackson:
|
time-zone: GMT+8
|
date-format: yyyy-MM-dd HH:mm:ss
|
profiles:
|
active: dev
|
# 文件上传
|
servlet:
|
multipart:
|
max-file-size: 30MB
|
max-request-size: 30MB
|
# 服务模块
|
devtools:
|
restart:
|
# 热部署开关
|
enabled: true
|
output:
|
ansi:
|
enabled: always
|
|
# MyBatis
|
mybatis:
|
# 搜索指定包别名
|
typeAliasesPackage: com.javaweb
|
# 配置mapper的扫描,找到所有的mapper.xml映射文件
|
mapperLocations: classpath*:mapper/**/*Mapper.xml
|
|
mapper:
|
not-empty: true
|
identity: MYSQL
|
|
# PageHelper分页插件
|
pagehelper:
|
helperDialect: mysql
|
reasonable: true
|
supportMethodsArguments: true
|
params: count=countSql
|
|
# 防止XSS攻击
|
xss:
|
# 过滤开关
|
enabled: true
|
# 排除链接(多个用逗号分隔)
|
excludes: /system/notice/*
|
# 匹配链接
|
urlPatterns: /system/*,/monitor/*,/tool/*
|