bootstrap.yml 446 B

12345678910111213141516171819202122
  1. # 服务端口号
  2. server:
  3. port: 11111
  4. spring:
  5. application:
  6. name: registry
  7. profiles:
  8. active: dev,jdbc
  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. label: master
  19. bus:
  20. trace:
  21. enabled: true