小编给大家分享一下如何搭建Spring cloud Eureka注册中心,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
在眉县等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都网站建设、成都网站制作 网站设计制作按需开发,公司网站建设,企业网站建设,高端网站设计,成都全网营销,外贸网站建设,眉县网站建设费用合理。
前提
系统安装jdk1.8及以上,配置好maven的ide(这里用idea进行演示,maven版本3.5,配置阿里云源)
项目搭建
新建一个maven项目,创建最简单的那种就好,项目名这里为EurekaServerDemo,包名什么的随意,项目打包方式为jar,
也可以使用spring官方的生成器,官方的生成器会创建基础的springboot项目结构。这里为了演示,都可以
修改pom文件,参考如下,版本推荐和本文相同,springboot和cloud版本的坑很多
4.0.0 com.hellxz EurekaServerDemo 0.0.1-SNAPSHOT jar org.springframework.cloud spring-cloud-netflix-eureka-server 1.3.5.RELEASE EurekaServerDemo Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 1.5.9.RELEASE org.springframework.cloud spring-cloud-dependencies Camden.SR3 pom import org.springframework.cloud spring-cloud-config-server org.springframework.cloud spring-cloud-starter-eureka-server org.springframework.boot spring-boot-starter-actuator org.springframework.boot spring-boot-maven-plugin org.apache.maven.plugins maven-compiler-plugin 1.8
新建一个主类,用于启动项目
package com.hellxz.EurekaServerDemo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; /** * @Author : Hellxz * @Description: EurekaServer * @Date : 2018/4/13 16:53 */ @EnableEurekaServer @SpringBootApplication public class EurekaServerDemoApplication { public static void main(String[] args) { //启动这个springboot应用 SpringApplication.run(EurekaServerDemoApplication.class,args); } }
在resources目录下新建一个application.properties文件,用于配置EurekaServer相关参数,也可以使用yaml文件
#提供服务端口 server.port=1111 #提供服务的域名,本地可以使用localhost或者配置hosts测试 eureka.instance.hostname=localhost #关闭向注册中心注册自己 eureka.client.register-with-eureka=false #关闭发现注册服务,注册中心仅用于维护节点 eureka.client.fetch-registry=false #配置注册中心提供服务的url(这里引用上边的配置) eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/
启动这个项目测试一下
测试
因为配置的是localhost:1111作为访问路径,这里启动项目后直接访问就好,如图
以上是“如何搭建Spring cloud Eureka注册中心”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!