28 lines
592 B
YAML
28 lines
592 B
YAML
|
# Tomcat
|
||
|
server:
|
||
|
port: 9202
|
||
|
|
||
|
# Spring
|
||
|
spring:
|
||
|
application:
|
||
|
# 应用名称
|
||
|
name: yanzhu-gen
|
||
|
profiles:
|
||
|
# 环境配置
|
||
|
active: dev
|
||
|
cloud:
|
||
|
nacos:
|
||
|
discovery:
|
||
|
# 服务注册地址
|
||
|
server-addr: @discovery.server-addr@
|
||
|
# 服务分组
|
||
|
group: lijun
|
||
|
config:
|
||
|
# 配置中心地址
|
||
|
server-addr: @discovery.server-addr@
|
||
|
# 配置文件格式
|
||
|
file-extension: yml
|
||
|
# 共享配置
|
||
|
shared-configs:
|
||
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|