123456789101112131415161718192021222324252627282930 |
- eureka:
- client:
- healthcheck:
- enabled: true #启动监控检查
- instance:
- #eurika使用IP不使用host
- prefer-ip-address: true
- #定制化在eurika中显示的名称
- instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}
- #security:
- # user:
- # name: jw
- # password: jkzl
- ---
- spring:
- profiles: jwdev
- ---
- spring:
- profiles: jwtest
- ---
- spring:
- profiles: jwprod
|