博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA springboot ssm b2b2c多用户商城系统源码-Eureka服务消费Feign
阅读量:6588 次
发布时间:2019-06-24

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

一、Feign简介

Feign是一种声明式、模板化的HTTP客户端。这使得Web服务客户端的写入更加方便 要使用Feign创建一个界面并对其进行注释。它具有可插入注释支持,包括Feign注释和JAX-RS注释。Feign还支持可插拔编码器和解码器。Spring Cloud增加了对Spring MVC注释的支持,并使用Spring Web中默认使用的HttpMessageConverters。Spring Cloud集成Ribbon和Eureka以在使用Feign时提供负载均衡的http客户端。这段话来源于官方文档,说白了就是通过Feign来调用Rest接口,而无需使用其他HTTP访问组件,并且同时还提供了负载均衡、编解码等功能,使用起来很方便。

二、环境介绍

首先在A服务器上启动Eureka服务,然后在B、C两台服务器上分别启动ms-demo-provider服务,这里也可以部署在一台服务器上采用不同的端口。访问Eureka界面查看服务注册状态,之后在本地新建客户端调用工程进行测试。此时A为注册中心,B、C分别为服务提供者(提供相同的接口),本地工程为服务消费者。

三、项目代码

在Idea中创建maven工程,ms-eurekaclient-demo工程代码结构如下:

1:pom.xml中的依赖如下:

4.0.0
com.cloud.microservice
ms-eurekaclient-demo
0.0.1-SNAPSHOT
jar
ms-eurekaclient-demo
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.5.9.RELEASE
UTF-8
UTF-8
1.8
Edgware.SR1
org.springframework.cloud
spring-cloud-starter-feign
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.cloud
spring-cloud-starter-ribbon
org.springframework.cloud
spring-cloud-starter-hystrix
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
复制代码

2:application.properties中的配置信息如下:

spring.application.name=ms-eurekaclient-demoserver.port=9800# 注册中心地址eureka.client.serviceUrl.defaultZone=http://xx.xx.xx.xx:9000/eureka/# Indicates whether this client should fetch eureka registry information from eureka server# 客户端是否要从eureka server获取注册信息,默认为trueeureka.client.fetchRegistry=true# Indicates how often(in seconds) to fetch the registry information from the eureka server# 从eureka server获取注册信息的频率,默认为30秒,缩短配置时间可以缓解服务上线时间过长的问题eureka.client.registryFetchIntervalSeconds=10复制代码

3:在入口类Application中增加@EnableEurekaClient和@EnableFeignClients的注解

  • @EnableEurekaClient:注解用来标识开启服务发现功能,据说也可使用@EnableDiscoveryClient,网上有人说@EnableEurekaClient本身就是用@EnableDiscoveryClient来实现的,这点没仔细研究过
  • @EnableFeignClients:注解用来开启Feign功能
package com.cloud.microservice.eurekaclientdemo;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.netflix.eureka.EnableEurekaClient;import org.springframework.cloud.netflix.feign.EnableFeignClients;@SpringBootApplication@EnableEurekaClient@EnableFeignClientspublic class FeignDemoApplication {    public static void main(String[] args) {        SpringApplication.run(FeignDemoApplication.class, args);    }}复制代码

4:创建IUserFeignServiceClient接口类,代码如下:

package com.cloud.microservice.eurekaclientdemo.FeignClient;import org.springframework.cloud.netflix.feign.FeignClient;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;@FeignClient("ms-demo-provider")public interface IUserFeignServiceClient {    //Feign定义服务提供者接口    @RequestMapping(value = "/demo/user/1.0/findAll", method = RequestMethod.GET, produces = {
"application/json;charset=UTF-8"}) String findAll();}复制代码

5:创建IUserService接口类和UserServiceImp实现类,代码如下:

IUserService接口类如下:

package com.cloud.microservice.eurekaclientdemo.FeignClient;public interface  IUserService {    String findAll();}复制代码

UserServiceImp实现类如下:

package com.cloud.microservice.eurekaclientdemo.FeignClient;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;@Servicepublic class UserServiceImp implements  IUserService{    @Autowired    private IUserFeignServiceClient userFeignServiceClient;    public String findAll() {        return "Feign: " + userFeignServiceClient.findAll();    }}复制代码

6:Rest接口定义,代码如下:

package com.cloud.microservice.eurekaclientdemo.FeignClient;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class FeignDemoController {    @Autowired    private IUserService userService;    @RequestMapping(value = "/feigndemo/findAll", method = RequestMethod.GET, produces = {
"application/json;charset=UTF-8"}) public String feignDemo() { return userService.findAll(); }}复制代码

启动工程,然后刷新Eureka界面,可以看到Feign已经注册到服务中心

Honghu代码结构图:

Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码请加企鹅求求:一零三八七七四六二六

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

你可能感兴趣的文章
C#结构体
查看>>
SVN四部曲之SVN设置详解深入
查看>>
MS-SQL的智能脚本智能提示失效丢失
查看>>
JS回调函数--简单易懂有实例
查看>>
C语言基础:for循环演示源码,字符循环和浮点数循环
查看>>
迈克菲实验室:Flame病毒的深度分析
查看>>
移动互联网初创型团队需要什么样的云计算服务?
查看>>
ssh信任
查看>>
【转载】用备份进行Active Directory的灾难重建:Active Directory系列之三
查看>>
nginx+lua+redis实现post请求接口之黑名单(一)
查看>>
MySQL之MHA架构的介绍
查看>>
MongoDB基本使用
查看>>
使用路由器配置DHCP
查看>>
ad&mysqlslap压力测试
查看>>
saltstack 快速入门
查看>>
图像处理之理解卷积
查看>>
五种基于RGB色彩空间统计的皮肤检测算法
查看>>
RAID0、RAID1、RAID0+1、RAID5原理介绍
查看>>
Win8 Metro App里玩XNA:ContentPipeline内容管线问题
查看>>
java学习 - 数组-选择排序
查看>>