Lyn4ever29 / spingcloudlearn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SpringCloud学习笔记

本项目地址主要是学习Sping Netflix 相关组件,使用的SpringBoot与SpringCloud的版本如下:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <!--springcloud的版本号就是这么奇怪-->
    <version>Dalston.SR1</version>
    <type>pom</type>
    <scope>import</scope>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-dependencies</artifactId>
    <version>1.5.9.RELEASE</version>
    <type>pom</type>
    <scope>import</scope>
</dependency>
入门理论
注册中心
负载均衡

服务的降级与熔断

使用Gateway作为路由网关

由于Gateway要使用SpringBoot2.0以上,而本仓库中的Springboot版本是1.5.9,所以我将相关教程移到了SpringCloud Alibaba仓库中

SpringCloud Alibaba学习地址

学习方法?

​ 这么多的项目,不知道哪个是哪个?不用关键,往下看。

  1. git clone或下载本项目到本地,然后使用IDEA导入要本项目

git clone https://github.com/Lyn4ever29/spingcloudlearn.git

  1. 点击上边的每一个链接查看对应的项目页面的README.md文件
  2. 在文档最上边有一个本教程涉及的项目列表。
  3. 查看对应的教程时,可以快速地找到对应的项目。

更多的教程?

关注“小鱼与Java”微信公众号,回复"SpringCloud"获取

About

License:Apache License 2.0


Languages

Language:Java 100.0%