服务注册与发现
Posted liuenyuan1996
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了服务注册与发现相关的知识,希望对你有一定的参考价值。
Edgware.SR5版本,Spring Cloud 1.xxx版本。如果使用Spring Cloud 2.xxx版本,请注意有些依赖的变化。从Finchley版本之后,进入Spring Cloud 2.xxx。
概述
需要用到组件是Spring Cloud Netflix的Eureka,Eureka是一个服务注册与发现模块
创建服务注册中心
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
</dependency>
启动类
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
?
/**
* Eureka registry center application
**/
application.yml
Eureka 是一个高可用的组件,它没有后端缓存,每一个实例注册之后需要向注册中心发送心跳(因此可以在内存中完成),在默认情况下 Erureka Server 也是一个 Eureka Client ,必须要指定一个 Server。
server
操作界面
Eureka Server是有界面,启动工程,访问:http://localhost:1111
以上是关于服务注册与发现的主要内容,如果未能解决你的问题,请参考以下文章