2021-09-17 21:55:28 +08:00
|
|
|
# Tomcat
|
|
|
|
|
server:
|
|
|
|
|
port: 9300
|
|
|
|
|
|
|
|
|
|
# Spring
|
|
|
|
|
spring:
|
|
|
|
|
application:
|
|
|
|
|
# 应用名称
|
2021-09-18 03:09:47 +08:00
|
|
|
name: lynn-file
|
2021-09-17 21:55:28 +08:00
|
|
|
profiles:
|
|
|
|
|
# 环境配置
|
|
|
|
|
active: dev
|
|
|
|
|
cloud:
|
|
|
|
|
nacos:
|
|
|
|
|
discovery:
|
|
|
|
|
# 服务注册地址
|
2021-09-18 03:09:47 +08:00
|
|
|
server-addr: lynn.server.local:8848
|
2021-09-17 21:55:28 +08:00
|
|
|
config:
|
|
|
|
|
# 配置中心地址
|
2021-09-18 03:09:47 +08:00
|
|
|
server-addr: lynn.server.local:8848
|
2021-09-17 21:55:28 +08:00
|
|
|
# 配置文件格式
|
|
|
|
|
file-extension: yml
|
|
|
|
|
# 共享配置
|
|
|
|
|
shared-configs:
|
|
|
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|