12345678910111213141516171819202122 |
- # 服务端口号
- server:
- port: 11111
- spring:
- application:
- name: registry
- profiles:
- active: dev,jdbc
- cloud:
- refresh:
- refreshable: none # 解决循环依赖的问题
- config:
- server:
- bootstrap: false
- prefix: /config
- jdbc:
- sql: SELECT `key`, `value` from properties where application=? and profile=? and label=?
- label: master
- bus:
- trace:
- enabled: true
|