| | |
| | | --- #################### 注册中心 + 配置中心相关配置 #################### |
| | | spring: |
| | | application: |
| | | name: system-server |
| | | |
| | | profiles: |
| | | active: local |
| | | active: @profiles.active@ |
| | | |
| | | cloud: |
| | | nacos: |
| | | server-addr: @nacos.server@ # Nacos 服务器地址 |
| | | username: @nacos.username@ |
| | | password: @nacos.password@ |
| | | discovery: # 【配置中心】配置项 |
| | | namespace: @profiles.active@ |
| | | group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP |
| | | metadata: |
| | | version: @nacos.metadata.version@ # 服务实例的版本号,可用于灰度发布 |
| | | config: # 【注册中心】配置项 |
| | | namespace: @profiles.active@ |
| | | group: DEFAULT_GROUP # 使用的 Nacos 配置分组,默认为 DEFAULT_GROUP |
| | | |
| | | main: |
| | | allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。 |
| | |
| | | |
| | | logging: |
| | | file: |
| | | name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径 |
| | | name: @log.path@/logs/${spring.application.name}.log # 日志文件名,全路径 |
| | | |
| | | --- #################### 接口文档配置 #################### |
| | | |
| | |
| | | job: |
| | | executor: |
| | | appname: ${spring.application.name} # 执行器 AppName |
| | | logpath: ${user.home}/logs/xxl-job/${spring.application.name} # 执行器运行日志文件存储磁盘路径 |
| | | logpath: @log.path@/logs/xxl-job/${spring.application.name} # 执行器运行日志文件存储磁盘路径 |
| | | accessToken: default_token # 执行器通讯TOKEN |
| | | |
| | | --- #################### 验证码相关配置 #################### |
| | |
| | | description: 提供管理员管理的所有功能 |
| | | version: ${iailab.info.version} |
| | | tenant: # 多租户相关配置项 |
| | | enable: false |
| | | enable: true |
| | | ignore-urls: |
| | | - /admin-api/system/tenant/get-id-by-name # 基于名字获取租户,不许带租户编号 |
| | | - /admin-api/system/tenant/get-by-website # 基于域名获取租户,不许带租户编号 |
| | |
| | | - /rpc-api/system/tenant/valid # 防止递归。避免调用 /rpc-api/system/tenant/valid 接口时,又去触发 /rpc-api/system/tenant/valid 去校验 |
| | | - /rpc-api/system/tenant/id-list # 获得租户列表的时候,无需传递租户编号 |
| | | - /rpc-api/system/oauth2/token/check # 访问令牌校验时,无需传递租户编号;主要解决上传文件的场景,前端不会传递 tenant-id! |
| | | ignore-caches: |
| | | - permission_menu_ids |
| | | - oauth_client |
| | | - notify_template |
| | | - mail_account |
| | | - mail_template |
| | | - sms_template |
| | | ignore-tables: |
| | | - system_tenant |
| | | - system_tenant_package |