2025-08-21 09:28:46 +08:00
|
|
|
# Tomcat
|
|
|
|
|
server:
|
|
|
|
|
port: 9207
|
|
|
|
|
|
|
|
|
|
# Spring
|
|
|
|
|
spring:
|
|
|
|
|
application:
|
|
|
|
|
# 应用名称
|
|
|
|
|
name: ruoyi-rocketmq
|
|
|
|
|
profiles:
|
|
|
|
|
# 环境配置
|
|
|
|
|
active: dev
|
|
|
|
|
cloud:
|
|
|
|
|
nacos:
|
|
|
|
|
discovery:
|
|
|
|
|
# 服务注册地址
|
|
|
|
|
server-addr: 127.0.0.1:8848
|
2025-08-28 09:40:11 +08:00
|
|
|
# server-addr: 172.16.15.103:8848
|
|
|
|
|
# username: ${spring.cloud.nacos.config.username}
|
|
|
|
|
# password: ${spring.cloud.nacos.config.password}
|
2025-08-21 09:28:46 +08:00
|
|
|
config:
|
|
|
|
|
# 配置中心地址
|
|
|
|
|
server-addr: 127.0.0.1:8848
|
2025-08-28 09:40:11 +08:00
|
|
|
# server-addr: 172.16.15.103:8848
|
|
|
|
|
# username: nacos
|
|
|
|
|
# password: nacos
|
2025-08-21 09:28:46 +08:00
|
|
|
# 配置文件格式
|
|
|
|
|
file-extension: yml
|
|
|
|
|
# 共享配置
|
|
|
|
|
shared-configs:
|
|
|
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
|
|
|
|
|
|
|
|
|
redisson:
|
|
|
|
|
singleServerConfig:
|
|
|
|
|
address: redis://localhost:6379
|
|
|
|
|
logging:
|
|
|
|
|
level:
|
|
|
|
|
com.ruoyi.app.mapper: DEBUG
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|