123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- spring:
- application:
- name: ag-basic
- cloud:
- config:
- failFast: true
- username: jw
- password: jkzl
- #发现服务
- eureka:
- client:
- healthcheck:
- enabled: false #监控检查
- serviceUrl:
- defaultZone: http://jw:jkzl@127.0.0.1:8761/eureka/
- instance:
- prefer-ip-address: false
- instance-id: ${spring.cloud.client.ipAddress}:${server.port}
- ---
- spring:
- profiles: jwdev
- cloud:
- config:
- uri: ${wlyy-spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy-spring.config.label:jwdev}
- ---
- spring:
- profiles: jwtest
- cloud:
- config:
- uri: ${wlyy-spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy-spring.config.label:jwdev}
- ---
- spring:
- profiles: iottest
- cloud:
- config:
- uri: ${wlyy-spring.config.uri:http://172.26.0.109:1221}
- label: ${wlyy-spring.config.label:jwdev}
- ---
- spring:
- profiles: iotyanshi
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy.spring.config.label:jwdev}
- ---
- spring:
- profiles: qytest
- cloud:
- config:
- uri: ${wlyy-spring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy-spring.config.label:jwdev}
- ---
- spring:
- profiles: jwprod
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: jwprod70
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.16.1.70:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: jwOracleProd
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: xzprod
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://172.16.100.63:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: xmjwprod
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://192.168.120.210:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: xmjwlocal
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://10.95.22.193:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: iotprod
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: jwystest
- cloud:
- config:
- uri: ${wlyy-spring.config.uri:http://172.26.0.194:1221}
- label: ${wlyy-spring.config.label:jwdev}
- ---
- spring:
- profiles: tnJwprod
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: hzprod
- cloud:
- config:
- uri: ${wlyy-spring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy-spring.config.label:master}
- ---
- spring:
- profiles: wjwProd
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://192.168.120.71:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: dsyy
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy.spring.config.label:master}
|