标签:注册 包括 ati depend 地址 项目 eureka ica try
一 .概述
在微服务之中,最为重要的就是服务治理.这个概念包括两个方面的内容
[1]服务的注册
[2]服务的发现
本次我们从开始使用Eureka来完成服务中心的搭建.
二 .创建eureka服务中心
[1]依赖的服务
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> </dependencies>
我们如果想要创建eureka的服务中心,就需要添加如上的依赖.
[2]创建启动类
@SpringBootApplication @EnableEurekaServer public class CloudEurekaApplication { public static void main(String[] args) { SpringApplication.run(CloudEurekaApplication.class,args); } }
我们想要创建一个eureka的服务中心就是这么简单,我们现在看看配置文件的内容.
server: port: 10086 eureka: instance: hostname: localhost ##服务的主机名 client: register-with-eureka: false ## fetch-registry: false ## 在eureka之中,配置上面的两个配置就作为服务端的配置 service-url: defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ ## eureka的服务暴露地址
三 .环境的测试
当我们启动我们的eureka的服务项目之中,我们如果能看到上述的内容就说明我们eureka的服务中心搭建成功了.
标签:注册 包括 ati depend 地址 项目 eureka ica try
原文地址:https://www.cnblogs.com/trekxu/p/9741170.html