2026-01-09 14:32:35 +08:00
|
|
|
# Tomcat
|
|
|
|
|
server:
|
|
|
|
|
port: 9201
|
|
|
|
|
|
|
|
|
|
# Spring
|
2026-02-24 17:14:49 +08:00
|
|
|
spring:
|
2026-01-09 14:32:35 +08:00
|
|
|
application:
|
|
|
|
|
# 应用名称
|
|
|
|
|
name: ruoyi-system
|
|
|
|
|
profiles:
|
|
|
|
|
# 环境配置
|
|
|
|
|
active: prod
|
2026-02-24 17:14:49 +08:00
|
|
|
flyway:
|
|
|
|
|
table: flyway_system_schema_history # 自定义历史表名
|
|
|
|
|
baseline-on-migrate: true
|
|
|
|
|
baseline-version: 0
|
2026-01-09 14:32:35 +08:00
|
|
|
cloud:
|
|
|
|
|
nacos:
|
|
|
|
|
discovery:
|
|
|
|
|
# 服务注册地址
|
|
|
|
|
server-addr: ruoyi-nacos:8848
|
|
|
|
|
config:
|
|
|
|
|
# 配置中心地址
|
|
|
|
|
server-addr: ruoyi-nacos:8848
|
|
|
|
|
# 配置文件格式
|
|
|
|
|
file-extension: yml
|
|
|
|
|
# 共享配置
|
|
|
|
|
shared-configs:
|
|
|
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|