You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
# Tomcat
|
|
|
|
|
server:
|
|
|
|
|
port: 8010
|
|
|
|
|
|
|
|
|
|
# Spring
|
|
|
|
|
spring:
|
|
|
|
|
main:
|
|
|
|
|
#解决循环依赖问题
|
|
|
|
|
allow-circular-references: true
|
|
|
|
|
application:
|
|
|
|
|
# 应用名称
|
|
|
|
|
name: bnyer-auth
|
|
|
|
|
profiles:
|
|
|
|
|
# 环境配置
|
|
|
|
|
active: dev
|
|
|
|
|
cloud:
|
|
|
|
|
nacos:
|
|
|
|
|
discovery:
|
|
|
|
|
# 服务注册地址
|
|
|
|
|
server-addr: 127.0.0.1:6231
|
|
|
|
|
# 命名空间地址
|
|
|
|
|
namespace: 52a72b07-7081-445b-b500-76976957abbc
|
|
|
|
|
# 命名空间
|
|
|
|
|
group: dev
|
|
|
|
|
config:
|
|
|
|
|
# 配置中心地址
|
|
|
|
|
server-addr: 127.0.0.1:6231
|
|
|
|
|
# 配置文件格式
|
|
|
|
|
file-extension: yml
|
|
|
|
|
# 命名空间地址
|
|
|
|
|
namespace: 52a72b07-7081-445b-b500-76976957abbc
|
|
|
|
|
# 命名空间
|
|
|
|
|
group: dev
|
|
|
|
|
# 共享配置
|
|
|
|
|
shared-configs:
|
|
|
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|