bootstrap.yml 768 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. spring:
  2. application:
  3. name: svr-base
  4. cloud:
  5. config:
  6. failFast: true
  7. username: jw
  8. password: jkzl
  9. ---
  10. spring:
  11. profiles: jwdev
  12. cloud:
  13. config:
  14. uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
  15. label: ${wlyy.spring.config.label:jwdev}
  16. ---
  17. spring:
  18. profiles: jwtest
  19. cloud:
  20. config:
  21. uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
  22. label: ${wlyy.spring.config.label:jwdev}
  23. ---
  24. spring:
  25. profiles: jwprod
  26. cloud:
  27. config:
  28. uri: ${wlyy.spring.config.uri:http://192.0.33.26:1221}
  29. label: ${wlyy.spring.config.label:prod}
  30. ---
  31. spring:
  32. profiles: local
  33. cloud:
  34. config:
  35. uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
  36. label: ${wlyy.spring.config.label:local}