首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

服务消费者

Spring Cloud(Finchley)微服务落地—基础篇

服务消费者

各位猿媛大家好,欢迎来到我的Spring Cloud微服务落地基础篇课程。这里是第四章。

本章主要带大家动手制作一个微服务提供者项目,以备后期课程使用。

这里的提供者项目实际就是一个非常简单webmvc项目,在这个项目中我们将调用第三章创建的服务提供者项目。同样,我们也会将应用注册到到第二章创建的注册中心中去。

本章内容

客户端负载均衡:Ribbon

创建项目consumer-service

项目结构

2.修改pom依赖

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

timing,springcloud

consumer-service

1.0-SNAPSHOT

consumer-service

http://www.example.com

org.springframework.boot

spring-boot-starter-parent

2.0.3.RELEASE

org.springframework.boot

spring-boot-starter-web

org.springframework.cloud

spring-cloud-starter-netflix-eureka-client

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-actuator

org.springframework.boot

spring-boot-maven-plugin

3.添加启动类

package timing.springcloud.consumer;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication

public class ConsumerApplication {

public static void main(String[] args) {

SpringApplication.run(ConsumerApplication.class, args);

}

}

4.Ribbon

将面向服务的REST模板请求自动转换成客户端负载均衡的服务调用。它是一个工具类框架,并不像Eureka那样可以独立部署。

通过Spring Cloud Ribbon我们在微服务架构中使用客户端负载均衡主要分为以下两步:

启动多个服务提供者服务实例并注册到一个注册中心或是多个相关的服务注册中心

服务消费者直接通过调用被@LoadBalanced注解修饰过的RestTemplate来实现面向服务的接口调用

下面让我们动手使用Ribbon来访问第三章创建的Get,Post,Put,Delete四个接口。

首先改造下启动类,开启负载均衡客户端

package timing.springcloud.consumer;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.cloud.client.loadbalancer.LoadBalanced;

import org.springframework.context.annotation.Bean;

import org.springframework.web.client.RestTemplate;

@SpringBootApplication

public class ConsumerApplication {

@Bean

//注册一个具有容错功能的RestTemplate

@LoadBalanced

//开启负载均衡客户端

RestTemplate restTemplate() {

return new RestTemplate();

}

public static void main(String[] args) {

SpringApplication.run(ConsumerApplication.class, args);

}

}

接着添加controller包并新增ClientHelloController类

package timing.springcloud.consumer.controller;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.http.HttpEntity;

import org.springframework.http.HttpHeaders;

import org.springframework.util.LinkedMultiValueMap;

import org.springframework.util.MultiValueMap;

import org.springframework.web.bind.annotation.*;

import org.springframework.web.client.RestTemplate;

import java.util.HashMap;

import java.util.Map;

@RestController

public class ClientRibbonHelloController {

private final RestTemplate restTemplate;

@Autowired

public ClientRibbonHelloController(RestTemplate restTemplate) {

this.restTemplate = restTemplate;

}

@GetMapping(value = "ribbon/get")

public String ribbonGet() {

return restTemplate.getForEntity("http://PROVIDER-SERVICE/get?para=", String.class, "client_ribbon").getBody();

}

@PostMapping(value = "ribbon/post")

public String ribbonPost() {

HttpHeaders headers = new HttpHeaders();

MultiValueMap parammap = new LinkedMultiValueMap();

parammap.add("para", "ribbon_client");

HttpEntity entity = new HttpEntity(parammap,headers);

return restTemplate.postForEntity("http://PROVIDER-SERVICE/post",entity, String.class ).getBody();

}

@PutMapping(value = "ribbon/put")

public void ribbonPut() {

HttpHeaders headers = new HttpHeaders();

MultiValueMap parammap = new LinkedMultiValueMap();

parammap.add("para", "ribbon_client");

HttpEntity entity = new HttpEntity(parammap,headers);

restTemplate.put("http://PROVIDER-SERVICE/put", entity);

}

@DeleteMapping(value = "ribbon/delete")

public void ribbonDelete() {

Map params = new HashMap();

params.put("para", "ribbon_client");

restTemplate.delete("http://PROVIDER-SERVICE/delete/", params);

}

}

这里我们分别使用Get,Post,Put,Delete方法去访问第三章创建的提供者项目中对应请求类型的方法。

现在我们来验证一下。

首先启动一个注册中心(第二章创建的),简单起见,使用单机版。再启动第三章创建的服务提供者,将提供者注册至注册中心中。最后启动这里的服务消费者应用。全部启动之后,您的注册中心页面应该是这样的。

提供者和消费者

使用api测试工具,如Restlet Client或postman等,依次访问消费者的四个接口查看一下效果。

以get为例

post也会得到类似的返回,但由于put和delete方法为void无返回类型,而我们在提供者方法体内部做了控制台输出,所以我们需要到服务提供者的控制台查看。

put和delete

本篇关于服务消费者就介绍到这里。后续章节我们会着重对其进行改造,希望大家多动手来实践。

代码已上传至个人gitee,如有需要请自行下载参考(本章使用的是consumer-service)。

https://gitee.com/fengxici/spring-cloud-finchley-demo.git

个人能力有限,才疏学浅,如有疏漏,烦请斧正。

基础篇的视频课程正在制作中,敬请期待。

  • 发表于:
  • 原文链接https://kuaibao.qq.com/s/20180802G1QALM00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券