You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
527 B
11 lines
527 B
|
4 years ago
|
server:
|
||
|
|
port: 7002
|
||
|
|
eureka:
|
||
|
|
instance:
|
||
|
|
hostname: eureka7002.com #eureka服务端的实例名称
|
||
|
|
client:
|
||
|
|
register-with-eureka: false #false表示不向注册中心注册自己。
|
||
|
|
fetch-registry: false #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
|
||
|
|
service-url:
|
||
|
|
#设置与eureka server交互的地址和注册服务都需要依赖这个地址
|
||
|
|
defaultZone: http://eureka7002.com:7002/eureka/ #集群就是指向其他的eureka
|