bootstrap.yml 645 B

123456789101112131415161718192021222324252627282930
  1. # 服务端口号
  2. server:
  3. port: 11111
  4. spring:
  5. application:
  6. name: config
  7. profiles:
  8. active: dev
  9. cloud:
  10. refresh:
  11. refreshable: none # 解决循环依赖的问题
  12. config:
  13. server:
  14. bootstrap: false
  15. prefix: /config
  16. jdbc:
  17. sql: SELECT `key`, `value` from properties where application=? and profile=? and label=?
  18. git:
  19. basedir: ./config
  20. username: tn
  21. password: 123456
  22. uri: https://git.gygxzc.cn/Envir_Group/Config_Resp.git
  23. label: master
  24. bus:
  25. trace:
  26. enabled: true
  27. logging:
  28. path: .logs/${spring.application.name}