# SpringCloud F + SpringBoot2.02 **Repository Path**: yanshaohui/springcloud2.02 ## Basic Information - **Project Name**: SpringCloud F + SpringBoot2.02 - **Description**: springcloud F + springboot2.02试用 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-05-11 - **Last Updated**: 2020-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SpringCloud Finchley.BUILD-SNAPSHOT + SpringBoot2.02.RELEASE 学习验证 #### 项目介绍 1. 基于zookeeper的注册中心验证失败,目前F版cloud中的Zookeeper客户端还在3.5 RC。我装的3.4.12稳定版zookeeper无法连接。放弃。 2. boot2验证了一下基于eureka的服务注册,以及新版actuator,这个变更较大,留意配置文件。 3. spring_reactive验证webflux以及reactiveRedis&reactiveMongoDB。 4. 验证cloud新组件gateway,基于nettyserver,从注册中心获取路由。 #### 验证笔记 1. 基于netty server的webflux接口在1000个并发下,性能炸裂。 2. 基于tomcat的传统mvcweb接口在1000个并发下,性能稳定,好在没有error返回。性能大概是webflux的1/4. 3. 基于netty server的mvcweb接口在1000个并发下,惨不忍睹。性能是webflux的1/10,错误率90%。 4. gateway可以转发mvc和flux的请求,转发基于tomcat的mvc请求性能基本没有下降但有3%错误发生。而转发flux性能将为原来的1/3,错误7%,netty server的mvc性能再次暴降,但错误率降为0。这些可能都与gateway中断路器配置有关,待分析。 5. consumer工程验证feign,hystrix和sleuth。feign调用reactive接口时,接口声明改为mvc格式才行。github上有feign_reactive方案,未验证。