【微服务之Eureka服务注册发现】

服务发现:云端负载均衡,一个基于 REST 的服务,用于定位服务,以实现云端的负载均衡和中间层服务器的故障转移。

一、代码如下

package com.didispace;

 

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.boot.builder.SpringApplicationBuilder;

import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

 

@EnableEurekaServer

@SpringBootApplication

public class Application {

 

public static void main(String[] args) {

new SpringApplicationBuilder(Application.class).web(true).run(args);

}

 

}

 

备注:

@EnableEurekaServer//开启Eureka Server

@SpringBootApplication//springBoot注解,spring在springBoot基础之上来构建项目

 



 

 

二、配置文件详解

server.port=1111

#eureka.instance.hostname=localhost

 

eureka.client.register-with-eureka=false

eureka.client.fetch-registry=false

eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/

 

这里解释一下:

server.port ---> 服务启动的端口

spring.application.name ---> 这是个服务名字,配置高可用以及其他服务访问该服务的时候,是通过这个属性找服务注册中心获取可用的访问ip的(当然你可以通过 ip 直接调用其他服务,那不如别用 sc 啦

eureka.client.serviceUrl.defaultZone ---> 这是服务注册的地址,后期说到高可用服务注册中心,你会看到这个属性多个地址是用英文逗号分割的

 

三、结果验证


 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值