博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springcloud(三):服务提供与调用
阅读量:6063 次
发布时间:2019-06-20

本文共 2946 字,大约阅读时间需要 9 分钟。

上一篇文章我们介绍了eureka服务注册中心的搭建,这篇文章介绍一下如何使用eureka服务注册中心,搭建一个简单的服务端注册服务,客户端去调用服务使用的案例。愿意了解源码的朋友直接求求交流分享技术:二一四七七七五六三三

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

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

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

org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.boot
spring-boot-starter-test
test
复制代码

2、配置文件 application.properties配置如下:

spring.application.name=spring-cloud-producerserver.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包配置 和服务提供者一致

org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.boot
spring-boot-starter-test
test
复制代码

2、配置文件 application.properties配置如下:

spring.application.name=spring-cloud-consumerserver.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);    } }复制代码

到此,最简单的一个服务注册与调用的例子就完成了。 整体代码结构如下:

转载于:https://juejin.im/post/5bfcc0e1e51d454e12428013

你可能感兴趣的文章
老板说很重视你的新项目,你信么?
查看>>
标准访问控制列表(ACL)
查看>>
详解匿名内部类 ,形参为什么要用final
查看>>
职场女性如何更轻松?
查看>>
Yum升级mysql5.1到5.6
查看>>
CartesianTree
查看>>
使用ajax和window.history.pushState无刷新改变页面内容和地址栏URL
查看>>
output
查看>>
windows 2008 系统蓝屏处理(百度BDSafeBrowser.sys文件导致)
查看>>
几种设置UITableView的cell动态高度的方法
查看>>
mysql操作表提示#1017 - Can’t find file:'*.frm'(errno:13)的问题
查看>>
linux NIS 配置(转载)
查看>>
批处理中格式化Date
查看>>
Android电话系统
查看>>
Word2003中无法插入特殊符号的解决办法
查看>>
不说12306你会Die啊?当然不会,但会憋死
查看>>
我的友情链接
查看>>
Python里的OS模块常用函数说明
查看>>
python 点滴记录7:django数据库操作中的filter和get方法
查看>>
让数据库飞起来 10大DB2优化技巧
查看>>