mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-20 02:08:15 +08:00
92 lines
2.2 KiB
YAML
92 lines
2.2 KiB
YAML
# Tomcat
|
||
server:
|
||
port: 19200
|
||
servlet:
|
||
context-path: /h5
|
||
|
||
# Spring
|
||
spring:
|
||
application:
|
||
# 应用名称
|
||
name: ruoyi-h5
|
||
profiles:
|
||
# 环境配置
|
||
active: local
|
||
# 资源信息
|
||
messages:
|
||
# 国际化资源文件路径
|
||
basename: i18n/messages
|
||
servlet:
|
||
multipart:
|
||
max-file-size: 10MB
|
||
|
||
springdoc:
|
||
info:
|
||
# 标题
|
||
title: '标题:${spring.application.name}多租户管理系统_接口文档'
|
||
# 描述
|
||
description: '描述:用于管理集团旗下公司的人员信息,具体包括XXX,XXX模块...'
|
||
# 版本
|
||
version: '版本号: 1.0.0'
|
||
# 作者信息
|
||
contact:
|
||
name: Lion Li
|
||
email: crazylionli@163.com
|
||
url: https://gitee.com/dromara/RuoYi-Vue-Plus
|
||
components:
|
||
# 鉴权方式配置
|
||
security-schemes:
|
||
apiKey:
|
||
type: APIKEY
|
||
in: HEADER
|
||
name: Authorization
|
||
#这里定义了两个分组,可定义多个,也可以不定义
|
||
group-configs:
|
||
- group: 1.演示模块
|
||
packages-to-scan: org.dromara.demo
|
||
- group: 2.通用模块
|
||
packages-to-scan: org.dromara.web
|
||
- group: 3.系统模块
|
||
packages-to-scan: org.dromara.system
|
||
- group: 4.代码生成模块
|
||
packages-to-scan: org.dromara.generator
|
||
|
||
# 多租户配置
|
||
tenant:
|
||
# 排除表
|
||
excludes:
|
||
- sys_menu
|
||
- sys_tenant
|
||
- sys_tenant_package
|
||
- sys_saas_user_role
|
||
|
||
# MyBatisPlus配置
|
||
# https://baomidou.com/config/
|
||
mybatis-plus:
|
||
# 多包名使用 例如 org.dromara.**.mapper,org.xxx.**.mapper
|
||
mapperPackage: com.luban.api.dao,com.dromara.**.mapper
|
||
# # 实体扫描,多个package用逗号或者分号分隔
|
||
# typeAliasesPackage: com.luban.api.entity
|
||
global-config:
|
||
dbConfig:
|
||
# 主键类型
|
||
# AUTO 自增 NONE 空 INPUT 用户输入 ASSIGN_ID 雪花 ASSIGN_UUID 唯一 UUID
|
||
# 如需改为自增 需要将数据库表全部设置为自增
|
||
idType: ASSIGN_ID
|
||
minioplus:
|
||
# rustfs 部署地址
|
||
backend: http://localhost:9000
|
||
# rustfs 存储桶
|
||
bucketPrefix: ruoyih5
|
||
# 授权key
|
||
key: admin
|
||
# 密钥
|
||
secret: admin123
|
||
|
||
|
||
# 日志配置
|
||
logging:
|
||
config: classpath:logback-plus.xml
|
||
level:
|
||
com.baomidou.mybatisplus: debug
|