# cloud-learn **Repository Path**: daifylearn/cloud-learn ## Basic Information - **Project Name**: cloud-learn - **Description**: Spring Cloud 入门案例对应代码 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2019-07-02 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # cloudLearn #### 介绍 springcloud的学习项目 #### 版本限制 spring boot版本限制 ```html org.springframework.boot spring-boot-starter-parent 2.0.8.RELEASE ``` spring cloud版本限制 ```html org.springframework.cloud spring-cloud-dependencies Finchley.SR1 pom import ``` 官方的版本限制 |Release Train | Boot Version | |---|---| |Greenwich |2.1.x| |Finchley |2.0.x| |Edgware |1.5.x| |Dalston |1.5.x| #### 项目内容 |项目名称 | 内容 | 端口 | 服务名称 | 服务中心端口 | |---|---|---|---| ---| |base-config-client |配置中心客户端| 8710 | base-config-client|8000| |base-config-client-bus |配置中心客户端使用-bus依赖| 8716 | base-config-client-bus|8000| |base-config-client-encryption |配置中心客户端使用-参数加密| 8717 | base-config-client-encryption|8000| |base-config-client-start |配置中心客户端(舍弃application配置)| 8715 | base-config-client-start|8000| |base-config-service |配置中心服务端| 8700 | base-config-service|8000| |base-config-service-bus |配置中心服务端-bus依赖| 8701 | base-config-service-bus|8000| |base-config-service-encryption |配置中心服务端-参数加密| 8703 | base-config-service-encryption|8000| |base-consumer |服务消费方| 8200 | base-consumer|8000| |base-consumer-sleuth |服务消费方-微服务数据链路追踪| 8201 | base-consumer-sleuth|8000| |base-eureka |服务发现| 8000 | base-eureka|8000| |base-eureka-cluster |服务发现集群| 8001、8002、8003 | base-eureka|8001、8002、8003| |base-eureka-security |服务发现安全模式| 8004 | base-eureka|8004| |base-feign|声明式调用| 8453 | base-feign|8000| |base-feign-config|声明式调用-自定义配置| 8454 | base-feign-config|8000| |base-feign-hystrix|声明式调用支持服务降级| 8455 | base-feign-hystrix|8000| |base-feign-hystrix-factory|声明式调用支持服务降级factory模式| 8457 | base-feign-hystrix-factory|8000| |base-feign-upload|声明式调用-提供文件上传| 8458 | base-feign-upload|8000| |base-hystrix |熔断器| 8404 | base-hystrix|8000| |base-hystrix-cluster |熔断器集群| 8405、8406、8407 | base-hystrix-cluster|8000| |base-hystrix-dashboard |熔断器数据监视| 8408 | base-hystrix-dashboard|8000| |base-hystrix-turbine |熔断器集群数据监视| 8410 | base-hystrix-turbine|8000| |base-producer |服务提供方| 8100 | base-producer|8000| |base-producer-cluster |服务提供方集群| 8101、8102、8103 | base-producer-cluster|8000| |base-producer-security |服务提供方安全模式| 8104 | base-producer-security|8004| |base-producer-sleuth |服务提供应用-微服务数据链路追踪| 8106 | base-producer-sleuth|8000| |base-producer-upload |服务提供应用支持上传| 8105 | base-producer-upload|8000| |base-ribbon |负载均衡| 8600 | base-ribbon|8000| |base-stream-client |stream实现消息队列-客户端| 8703 | base-stream-client|8000| |base-stream-producer |stream实现消息队列-服务端| 8704 | base-stream-producer|8000| |base-zuul |服务网关| 8300 | base-zuul|8000| |base-zuul-fallback |服务网关支持服务降级| 8302 | base-zuul-fallback|8000| |base-zuul-upload |服务网关文件上传限制| 8301 | base-zuul-upload|8000| |extra-consul-client |使用consul实现服务发现-客户端| 8201 | extra-consul-client|8500| |extra-consul-producer |使用consul实现服务发现-服务端| 8200 | extra-consul-producer|8500| #### 个人博客 1. [个人博客地址](https://blog.csdn.net/qq330983778)