
【实战-Spring Cloud Finchley实战】
Spring Cloud Finchley实战项目
小小工匠
show me the code ,change the world
展开
-
Spring Cloud【Finchley】实战-01注册中心及商品微服务
文章目录Spring Cloud【Finchley】专栏概述版本说明搭建Eureka Server注册中心工程结构Step1. pom添加依赖Step2.application.yml 配置Eureka的信息Step3. 启动类增加@EnableEurekaServerStep4 启动测试工程代码库表设计-商品模块Product 微服务构建新建工程作为 Eureka Client,注册到Eurek...原创 2019-03-23 01:32:15 · 15162 阅读 · 0 评论 -
Spring Cloud【Finchley】实战-02订单微服务
文章目录概述数据模型-订单微服务API业务逻辑分析搭建订单微服务依赖及配置文件pom.xmlapplication.yml将微服务注册到注册中心实体类Dao层Service层Controller层概述这里我们简单的说下业务相关的需求,重点是体会微服务这种理念是如何落地的。数据模型-订单微服务 通常来讲,微服务都是分数据库的。这里我们新建个数据库给订单微服务 ,数据库实例名 o2o-ord...原创 2019-03-23 16:31:26 · 15472 阅读 · 0 评论 -
Spring Cloud【Finchley】实战-03订单微服务与商品微服务之间的调用
文章目录Spring Cloud【Finchley】专栏概述Spring Cloud【Finchley】专栏如果还没有系统的学过Spring Cloud ,先到我的专栏去逛逛吧Spring Cloud 【Finchley】手札概述还记得上篇博文的TODO吧这里我们先循序渐进的了解下,微服务之间调用的几种方式...原创 2019-03-24 00:38:53 · 16897 阅读 · 0 评论 -
Spring Cloud【Finchley】实战-04将订单微服务与商品微服务分别拆分为多模块
文章目录Spring Cloud【Finchley】专栏概述Product微服务功能分析及多模块拆分Step1. 调整主(父)工程的工程类型 ``为pomStep2. 新建子模块Spring Cloud【Finchley】专栏如果还没有系统的学过Spring Cloud ,先到我的专栏去逛逛吧Spring Cloud 【Finchley】手札概述上篇博文 Spring Cloud...原创 2019-03-26 01:08:00 · 16726 阅读 · 2 评论 -
Spring Cloud【Finchley】实战-05配置中心的搭建(配合使用Eureka)和Config Server高可用
文章目录概述搭建Config ServerStep1: 新建Config Server微服务,添加依赖Step2: 将Config Server 注册到Eureka Server上Step3: 启动@EnableConfigServer,将服务变更为Config ServerStep5: 新建远端Git工程,用于存放配置文件Step6: 启动测试搭建Config ClientStep1.添加sp...原创 2019-04-04 23:26:17 · 15076 阅读 · 0 评论 -
Spring Cloud【Finchley】实战-06使用/actuator/bus-refresh端点手动刷新配置 + 使用Spring Cloud Bus自动更新配置
文章目录概述使用/refresh端点手动刷新配置Step1. 添加依赖Step2. 配置RabbitMQ信息Step3. 启动RabbitMQ的Docker镜像Step4. 启动artisan config server微服务使用Spring Cloud Bus自动更新配置概述Spring Cloud实战-05配置中心的搭建(配合使用Eureka)和Config Server高可用 中的遗...原创 2019-04-09 00:18:39 · 24020 阅读 · 9 评论 -
Spring Cloud【Finchley】实战-07异步下单
文章目录概述Product微服务改造接入配置中心接入消息队列概述学习了RabbitMQ、Spring Boot整合RabbitMQ以及使用Spring Cloud Stream操作RabbitMQ之后,我们着手改造下吧Product微服务改造接入配置中心既然引入了配置中心,那么我们把artisan product微服务也接入到配置中心吧 。Step1 引入依赖 ,作为客户端引入sp...原创 2019-04-13 20:14:19 · 15211 阅读 · 0 评论