springcloud(三):服务提供与调用

举报
纯洁的微笑 发表于 2018/11/19 16:04:30 2018/11/19
【摘要】 上一篇文章我们介绍了eureka服务注册中心的搭建,这篇文章介绍一下如何使用eureka服务注册中心,搭建一个简单的服务端注册服务,客户端去调用服务使用的案例。

上一篇文章我们介绍了eureka服务注册中心的搭建,这篇文章介绍一下如何使用eureka服务注册中心,搭建一个简单的服务端注册服务,客户端去调用服务使用的案例。


案例中有三个角色:服务注册中心、服务提供者、服务消费者,其中服务注册中心就是我们上一篇的eureka单机版启动既可,流程是首先启动注册中心,服务提供者生产服务并注册到服务中心中,消费者从服务中心中获取服务并执行。


服务提供

我们假设服务提供者有一个hello方法,可以根据传入的参数,提供输出“hello xxx,this is first messge”的服务


1、pom包配置

创建一个springboot项目,pom.xml中添加如下配置:

1 <dependencies>
2     <dependency>
3         <groupId>org.springframework.cloud</groupId>
4         <artifactId>spring-cloud-starter-eureka</artifactId>
5     </dependency>
6     <dependency>
7        <groupId>org.springframework.boot</groupId>
8        <artifactId>spring-boot-starter-test</artifactId>
9         <scope>test</scope>
10     </dependency>
11 </dependencies>


2、配置文件

application.properties配置如下:

1 spring.application.name=spring-cloud-producer
2 server.port=9000
3 eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/


3、启动类

启动类中添加@EnableDiscoveryClient注解

1 @SpringBootApplication
2 @EnableDiscoveryClient
3 public class ProducerApplication {
4 
5     public static void main(String[] args) {
6         SpringApplication.run(ProducerApplication.class, args);
7     }
8 }

4、controller

提供hello服务

1 @RestController
2 public class HelloController {
3 
4     @RequestMapping("/hello")
5     public String index(@RequestParam String name) {
6         return "hello "+name+",this is first messge";
7     }
8 }


添加@EnableDiscoveryClient注解后,项目就具有了服务注册的功能。启动工程后,就可以在注册中心的页面看到SPRING-CLOUD-PRODUCER服务。


11.png


到此服务提供者配置就完成了。


服务调用

1、pom包配置

和服务提供者一致

1 <dependencies>
2     <dependency>
3         <groupId>org.springframework.cloud</groupId>
4         <artifactId>spring-cloud-starter-eureka</artifactId>
5     </dependency>
6     <dependency>
7         <groupId>org.springframework.boot</groupId>
8         <artifactId>spring-boot-starter-test</artifactId>
9         <scope>test</scope>
10     </dependency>
11 </dependencies>


2、配置文件

application.properties配置如下:

1 spring.application.name=spring-cloud-consumer
2 server.port=9001
3 eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/


3、启动类

启动类添加@EnableDiscoveryClient和@EnableFeignClients注解。

1 @SpringBootApplication
2 @EnableDiscoveryClient
3 @EnableFeignClients
4 public class ConsumerApplication {
5 
6     public static void main(String[] args) {
7         SpringApplication.run(ConsumerApplication.class, args);
8     }
9 
10 }


  • @EnableDiscoveryClient :启用服务注册与发现

  • @EnableFeignClients:启用feign进行远程调用


Feign是一个声明式Web Service客户端。使用Feign能让编写Web Service客户端更加简单, 它的使用方法是定义一个接口,然后在上面添加注解,同时也支持JAX-RS标准的注解。Feign也支持可拔插式的编码器和解码器。Spring Cloud对Feign进行了封装,使其支持了Spring MVC标准注解和HttpMessageConverters。Feign可以与Eureka和Ribbon组合使用以支持负载均衡。


4、feign调用实现

1 @FeignClient(name= "spring-cloud-producer")
2 public interface HelloRemote {
3     @RequestMapping(value = "/hello")
4     public String hello(@RequestParam(value = "name") String name);
5 }


  • name:远程服务名,及spring.application.name配置的名称


此类中的方法和远程服务中contoller中的方法名和参数需保持一致。


5、web层调用远程服务

1 @RestController
2 public class ConsumerController {
3 
4     @Autowired
5     HelloRemote HelloRemote;
6 
7     @RequestMapping("/hello/{name}")
8     public String index(@PathVariable("name") String name) {
9         return HelloRemote.hello(name);
10     }
11 
12 }


到此,最简单的一个服务注册与调用的例子就完成了。


测试

简单调用

依次启动spring-cloud-eureka、spring-cloud-producer、spring-cloud-consumer三个项目


先输入:http://localhost:9000/hello?name=neo 检查spring-cloud-producer服务是否正常


返回:hello neo,this is first messge


说明spring-cloud-producer正常启动,提供的服务也正常。


浏览器中输入:http://localhost:9001/hello/neo


返回:hello neo,this is first messge


说明客户端已经成功的通过feign调用了远程服务hello,并且将结果返回到了浏览器。


负载均衡

以上面spring-cloud-producer为例子修改,将其中的controller改动如下:

1 @RestController
2 public class HelloController {
3 
4     @RequestMapping("/hello")
5     public String index(@RequestParam String name) {
6         return "hello "+name+",this is producer 2  send first messge";
7     }
8 }


在配置文件中改动端口:

1 spring.application.name=spring-cloud-producer
2 server.port=9003
3 eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/


打包启动后,在eureka就会发现两个服务提供者,如下图:


22.png


然后在浏览器再次输入:http://localhost:9001/hello/neo 进行测试:


第一次返回结果:hello neo,this is first messge


第二次返回结果:hello neo,this is producer 2 send first messge


不断的进行测试下去会发现两种结果交替出现,说明两个服务中心自动提供了服务均衡负载的功能。如果我们将服务提供者的数量在提高为N个,测试结果一样,请求会自动轮询到每个服务端来处理。

--------------------- 

作者:纯洁的微笑 

出处:http://www.ityouknow.com/ 

版权声明:本文为博主原创,版权归作者所有,转载请注明出处。了解最新劲爆内容,请关注公众号。


o_qrcode_for_gh_d751b87d749e_344.jpg


【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。