123456789101112131415161718192021222324252627282930 |
- # 服务端口号
- server:
- port: 11111
- spring:
- application:
- name: config
- profiles:
- active: dev
- cloud:
- refresh:
- refreshable: none # 解决循环依赖的问题
- config:
- server:
- bootstrap: false
- prefix: /config
- jdbc:
- sql: SELECT `key`, `value` from properties where application=? and profile=? and label=?
- git:
- basedir: ./config
- username: tn
- password: 123456
- uri: https://git.gygxzc.cn/Envir_Group/Config_Resp.git
- label: master
- bus:
- trace:
- enabled: true
- logging:
- path: .logs/${spring.application.name}
|