Spring Clould demo搭建

Java :1.8

maven:3.5

Idea:破解版(注册码:http://idea.lanyus.com)

用idea创建clould项目比较方便也可以在官方地址创建在导入(https://repo.spring.io)

=====================================

本篇文章只展示 注册中心(Eureka) ,网关(Zuul)

创建注册中心服务:

Spring Clould demo搭建_第1张图片

Spring Clould demo搭建_第2张图片

Spring Clould demo搭建_第3张图片

finish即可,首次创建会跑几分钟,配置阿里maven镜像的情况,不配置会跑很久很久吧

Spring Clould demo搭建_第4张图片

Spring Clould demo搭建_第5张图片

启动访问:localhost:1001

Spring Clould demo搭建_第6张图片

====================================注册中心完成

再创建两个服务创建方式同上勾选 Eureka Server 选项

注:这个是2.0以后的坐标与以前的版本坐标不同


    org.springframework.cloud
    spring-cloud-starter-netflix-eureka-server

Spring Clould demo搭建_第7张图片

Spring Clould demo搭建_第8张图片

编写一个测试类

Spring Clould demo搭建_第9张图片

启动项目 localhost:2002

Spring Clould demo搭建_第10张图片

刷新 localhost:1001 

Spring Clould demo搭建_第11张图片

 

另一个服务localhost:2001

Spring Clould demo搭建_第12张图片

Spring Clould demo搭建_第13张图片

刷新 注册中心服务

Spring Clould demo搭建_第14张图片

这里的Application 对应的是配置文件里面的 spring.application.name

=======================================创建 zuul 服务 路由网关

所有的请求都是有它进行转发分配到哪个服务

Spring Clould demo搭建_第15张图片


    org.springframework.cloud
    spring-cloud-starter-netflix-zuul

它也需要注册到注册中心服务上


    org.springframework.cloud
    spring-cloud-starter-netflix-eureka-server

Spring Clould demo搭建_第16张图片

Spring Clould demo搭建_第17张图片这就是基本的SpringClould demo

大家要是有兴趣研究SpringClould提供的负载容错,也可以试着创建项目试一下

SpringClould 

Spring Clould demo搭建_第18张图片

打成Jar包直接可以部署

Spring Clould demo搭建_第19张图片

其实书上说的是部署在docker上

太困了

你可能感兴趣的:(框架,SpringClould)