feat(config): 添加 rui-service-starter Nacos 配置模板

- 新增 rui-service-starter.yaml Nacos 配置模板
- 添加 modules 可用模块列表配置(供租户管理使用)

对应工单 #1
This commit is contained in:
2026-06-05 08:30:28 +08:00
parent 01f36acdd7
commit 8506424c26
2 changed files with 3 additions and 68 deletions
@@ -56,23 +56,6 @@ spring:
# 无 MyBatis 的模块(gateway)请删除下面这行 # 无 MyBatis 的模块(gateway)请删除下面这行
- optional:nacos:rui-data.${spring.cloud.nacos.config.file-extension:yaml} - optional:nacos:rui-data.${spring.cloud.nacos.config.file-extension:yaml}
# ============================================================================
# 模块管理配置(可选,仅在需要管理租户模块时配置)
# 配置位置:Nacos rui-service-starter.yaml 或本模块的 Nacos 配置
# ============================================================================
# rui:
# modules:
# # 全局可用模块列表(供租户管理的模块配置弹窗使用)
# available:
# - code: system
# name: 系统管理
# icon: tabler:settings
# - code: user
# name: 用户管理
# icon: tabler:users
# # 默认启用模块(新租户默认开启,逗号分隔)
# default-enabled: system,user
management: management:
endpoints: endpoints:
web: web:
@@ -1,12 +1,13 @@
# rui-service-starter.yaml — 聚合服务启动模块配置 # rui-service-starter.yaml — 聚合启动器配置
# Data ID: rui-service-starter.yaml # Data ID: rui-service-starter.yaml
# Group: DEFAULT_GROUP # Group: DEFAULT_GROUP
# 功能:聚合 system、user 等模块,统一启动部署
# 服务端口:9399(聚合启动器) # 服务端口:9399(聚合启动器)
server: server:
port: 9399 port: 9399
# 模块管理配置(全局可用模块列表,供租户管理模块配置使用) # 模块管理配置(供租户管理模块配置弹窗使用)
rui: rui:
modules: modules:
# 全局可用模块列表(系统层面定义有哪些模块可选) # 全局可用模块列表(系统层面定义有哪些模块可选)
@@ -31,52 +32,3 @@ rui:
icon: tabler:device-desktop icon: tabler:device-desktop
# 默认启用模块(新租户默认开启,逗号分隔) # 默认启用模块(新租户默认开启,逗号分隔)
default-enabled: system,user,demo default-enabled: system,user,demo
# 数据库配置(聚合模式下复用各模块数据源)
spring:
datasource:
url: jdbc:mysql://${MYSQL_HOST:localhost}:${MYSQL_PORT:3306}/${MYSQL_DB:rui}?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
username: ${MYSQL_USERNAME:root}
password: ${MYSQL_PASSWORD:root}
driver-class-name: com.mysql.cj.jdbc.Driver
hikari:
maximum-pool-size: 20
minimum-idle: 5
idle-timeout: 300000
connection-timeout: 20000
max-lifetime: 1200000
# MyBatis-Plus 配置
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
map-underscore-to-camel-case: true
global-config:
db-config:
logic-delete-field: deleted
logic-delete-value: 1
logic-not-delete-value: 0
id-type: auto
mapper-locations: classpath*:/mapper/**/*.xml
# Redis 配置
spring:
data:
redis:
host: ${REDIS_HOST:localhost}
port: ${REDIS_PORT:6379}
password: ${REDIS_PASSWORD:}
database: 0
timeout: 10s
lettuce:
pool:
max-active: 20
max-idle: 10
min-idle: 5
max-wait: 10s
# 日志配置
logging:
level:
com.rui: INFO
org.springframework.web: WARN