2024-08-17 12:11:19 +08:00
|
|
|
# Tomcat
|
|
|
|
server:
|
2024-08-17 13:13:48 +08:00
|
|
|
port: 9208
|
2024-08-17 12:11:19 +08:00
|
|
|
|
|
|
|
# Spring
|
|
|
|
spring:
|
|
|
|
application:
|
|
|
|
# 应用名称
|
|
|
|
name: yanzhu-manage
|
|
|
|
profiles:
|
|
|
|
# 环境配置
|
|
|
|
active: dev
|
|
|
|
cloud:
|
|
|
|
nacos:
|
|
|
|
discovery:
|
|
|
|
# 服务注册地址
|
|
|
|
server-addr: @discovery.server-addr@
|
2024-08-20 21:40:05 +08:00
|
|
|
# 服务分组
|
2024-11-09 10:05:00 +08:00
|
|
|
group: lijun
|
2024-08-17 12:11:19 +08:00
|
|
|
config:
|
|
|
|
# 配置中心地址
|
|
|
|
server-addr: @discovery.server-addr@
|
|
|
|
# 配置文件格式
|
|
|
|
file-extension: yml
|
|
|
|
# 共享配置
|
|
|
|
shared-configs:
|
|
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
2024-12-17 20:25:21 +08:00
|
|
|
|
|
|
|
logging:
|
|
|
|
level:
|
|
|
|
com.ycx.manage.mapper: DEBUG
|