服务提供与调用

简介:

服务提供

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

1、pom包配置

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

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-eureka</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency></dependencies>


2、配置文件

application.properties配置如下:

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

参数在上一篇都已经解释过,这里不多说。

3、启动类

启动类中添加@EnableDiscoveryClient注解

@SpringBootApplication@EnableDiscoveryClientpublic class ProducerApplication {    public static void main(String[] args) {
        SpringApplication.run(ProducerApplication.class, args);
    }
}


4、controller

提供hello服务

@RestControllerpublic class HelloController {    
    @RequestMapping("/hello")    public String index(@RequestParam String name) {        return "hello "+name+",this is first messge";
    }
}

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

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

服务调用

1、pom包配置

和服务提供者一致

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-eureka</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency></dependencies>


2、配置文件

application.properties配置如下:

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


3、启动类

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

@SpringBootApplication@EnableDiscoveryClient@EnableFeignClientspublic class ConsumerApplication {    public static void main(String[] args) {
        SpringApplication.run(ConsumerApplication.class, args);
    }

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

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

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

4、feign调用实现

@FeignClient(name= "spring-cloud-producer")public interface HelloRemote {    @RequestMapping(value = "/hello")    public String hello(@RequestParam(value = "name") String name);
}
  • name:远程服务名,及spring.application.name配置的名称

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


5、web层调用远程服务

将HelloRemote注入到controller层,像普通方法一样去调用即可。

@RestControllerpublic class ConsumerController {    @Autowired
    HelloRemote HelloRemote;    
    @RequestMapping("/hello/{name}")    public String index(@PathVariable("name") String name) {        return HelloRemote.hello(name);
    }

}

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


测试

简单调用

依次启动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改动如下:

@RestControllerpublic class HelloController {    
    @RequestMapping("/hello")    public String index(@RequestParam String name) {        return "hello "+name+",this is producer 2  send first messge";
    }
}

在配置文件中改动端口:

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

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

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

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

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

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

本文转自帅气的头头博客51CTO博客,原文链接http://blog.51cto.com/12902932/1926491如需转载请自行联系原作者

sshpp
相关文章
|
1月前
|
C语言 C++ 容器
C调用C++代码
C调用C++代码
13 1
|
8月前
调用DescribeRouteTables接口
调用DescribeRouteTables接口
51 1
|
12月前
23-构造函数的调用时机
23-构造函数的调用时机
|
存储 C语言 容器
调用一个函数时发生了什么?
调用一个函数时发生了什么?
83 0
调用一个函数时发生了什么?
|
Java
CheerpJ调用的两种方式
CheerpJ调用的两种方式
200 0
|
设计模式 SQL Java
调用MapperProxy对象|学习笔记
快速学习调用MapperProxy对象
163 0
调用MapperProxy对象|学习笔记
|
小程序
小程序调用接口不生效?
小程序调用接口不生效?
312 0
|
缓存 负载均衡 微服务
多服务间的调用
上文我们把我们项目注册到服务器上了,但是在微服务中,我们会有多个服务,同时也会使用A服务调用B服务的接口。springcloud netflix这里有两种方式ribbon和feign,我们分别介绍。
99 0
多服务间的调用
|
C++
c调用c++函数
c调用c++普通函数     cpp_test/cpp.h #ifndef CPP_H #define CPP_H #include "extern_cpp.h" int add(int a, int b); char add(char a, char b); #endif // CPP_H     cpp_test/extern_cpp.
1988 0
|
Java 开发工具 应用服务中间件