123456789101112131415161718192021222324252627282930 |
- server:
- port: 9000
- management:
- security:
- enabled: false
- ---
- spring:
- profiles: dev
- rabbitmq:
- host: 172.19.103.58
- port: 5672
- username: guest
- password: guest
- zipkin:
- baseUrl: http://127.0.0.1:8669
- eureka:
- client:
- service-url:
- defaultZone: http://peer1:8761/eureka/
- hello: hello world!xyz12312
- ---
- spring:
- profiles: test
- hello: hello world!
|