2025-03-10 17:41:02 +08:00

29 lines
871 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

server:
port: 9081
servlet:
context-path: /auth
spring:
cloud:
nacos:
discovery:
metadata:
management:
context-path: ${server.servlet.context-path}/actuator
server-addr: ${nacos-host:127.0.0.1}:${nacos-port:8848}
#nacos的命名空间ID默认是public
namespace: ${nacos-namespace:}
config:
server-addr: ${spring.cloud.nacos.discovery.server-addr}
namespace: ${spring.cloud.nacos.discovery.namespace}
group: DKHA_CLOUD_GROUP
file-extension: yaml
#指定共享配置,且支持动态刷新
extension-configs:
- data-id: datasource.yaml
group: ${spring.cloud.nacos.config.group}
refresh: true
- data-id: common.yaml
group: ${spring.cloud.nacos.config.group}
refresh: true