bootstrap.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. spring:
  2. application:
  3. name: ag-basic
  4. cloud:
  5. config:
  6. failFast: true
  7. username: jw
  8. password: jkzl
  9. #发现服务
  10. eureka:
  11. client:
  12. healthcheck:
  13. enabled: false #监控检查
  14. serviceUrl:
  15. defaultZone: http://jw:jkzl@192.168.120.210:8761/eureka/
  16. instance:
  17. prefer-ip-address: false
  18. instance-id: ${spring.cloud.client.ipAddress}:${server.port}
  19. ---
  20. spring:
  21. profiles: jwdev
  22. cloud:
  23. config:
  24. uri: ${wlyy-spring.config.uri:http://172.26.0.107:1221}
  25. label: ${wlyy-spring.config.label:jwdev}
  26. ---
  27. spring:
  28. profiles: jwtest
  29. cloud:
  30. config:
  31. uri: ${wlyy-spring.config.uri:http://172.26.0.107:1221}
  32. label: ${wlyy-spring.config.label:jwdev}
  33. ---
  34. spring:
  35. profiles: jwprod
  36. cloud:
  37. config:
  38. uri: ${wlyy.pring.config.uri:http://192.0.33.26:1221}
  39. label: ${wlyy.spring.config.label:master}
  40. ---
  41. spring:
  42. profiles: jwprod70
  43. cloud:
  44. config:
  45. uri: ${wlyy.spring.config.uri:http://172.16.1.70:1221}
  46. label: ${wlyy.spring.config.label:master}
  47. ---
  48. spring:
  49. profiles: jwOracleProd
  50. cloud:
  51. config:
  52. uri: ${wlyy.spring.config.uri:http://192.168.33.199:1221}
  53. label: ${wlyy.spring.config.label:master}
  54. ---
  55. spring:
  56. profiles: xzprod
  57. cloud:
  58. config:
  59. uri: ${wlyy.pring.config.uri:http://172.16.100.63:1221}
  60. label: ${wlyy.spring.config.label:master}
  61. ---
  62. spring:
  63. profiles: xmjwprod
  64. cloud:
  65. config:
  66. uri: ${wlyy.pring.config.uri:http://121.104.171.156:1221}
  67. label: ${wlyy.spring.config.label:master}