31 lines
694 B
YAML
31 lines
694 B
YAML
# Tomcat
|
|
server:
|
|
port: 9003
|
|
# Spring
|
|
spring:
|
|
main:
|
|
allow-circular-references: true
|
|
allow-bean-definition-overriding: true
|
|
jackson:
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
time-zone: GMT+8
|
|
application:
|
|
# 应用名称
|
|
name: bwie-car
|
|
profiles:
|
|
# 环境配置
|
|
active: dev
|
|
cloud:
|
|
nacos:
|
|
discovery:
|
|
# 服务注册地址
|
|
server-addr: 124.221.177.197:8848
|
|
config:
|
|
# 配置中心地址
|
|
server-addr: 124.221.177.197:8848
|
|
# 配置文件格式
|
|
file-extension: yml
|
|
# 共享配置
|
|
shared-configs:
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|