强烈推荐各位阅读官网,官网介绍写的非常好!!!
Feign官网:https://cloud.spring.io/spring-cloud-static/spring-cloud-openfeign/2.2.2.RELEASE/reference/html/
总结:
Feign是一个声明性web服务客户端。它使编写web服务客户机更容易。使用Feign创建一个接口并注释它。它具有可插入的注释支持,包括Feign注释和JAX-RS注释。Feign也支持可插拔编码器和解码器。Spring Cloud增加了对Spring MVC注释的支持,并支持使用Spring Web中默认使用的HttpMessageConverters。Spring Cloud集成了Ribbon和Eureka,以及Spring Cloud LoadBalancer,在使用Feign时提供一个负载均衡的http客户端。
接着第二章节, 本章节介绍如何使用Feign
没看过上文的,请先查看相关文章:
springcloud教程 -- 1.快速搭建入门级demo,看这一篇就够了
前文中我们创建了一个普通的消费者端:j-cloud-consumer
在这个工程中,我们使用RestTemplate来发送请求,代码看起来较为凌乱
接下来进入feign实践:
1.基于上一章节,在j-cloud下新建一个moudle,使用feign的消费者工程:j-cloud-consumer-feign
创建过程参考上一章节
项目结构如下:
2.pom.xml文件内容如下:
4.0.0
cn.jorian.framework
j-cloud-consumer-feign
1.0.0
j-cloud-consumer-feign
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.5.4.RELEASE
UTF-8
UTF-8
1.8
Dalston.SR1
org.springframework.cloud
spring-cloud-starter-hystrix
org.projectlombok
lombok
1.16.20
provided
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.cloud
spring-cloud-starter-feign
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-dependencies
${cloud.version}
pom
import
3.控制器HelloController,代码如下:
注意,此调用服务的方式已经改为使用feign,而非RestTemplate
package cn.jorian.framework.controller;
import cn.jorian.framework.service.UserClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class Hellocontroller {
@Autowired
private UserClient feignClient;
/**
* 此处的mapping是一级controller,调用方法里边绑定了二级的conroller,相当于用http完成一次转发
* @return
*/
@GetMapping("/hello")
public String hello(){
return feignClient.sayHello();
}
@GetMapping("/hi")
public String hi(){
return feignClient.sayHi();
}
@GetMapping("/haha")
public String haha(){
return feignClient.sayHaha();
}
}
4.启动器JCloudConsumerFeignApplication,代码如下:
此处注意,增加了feign客户端的配置,需要配置feign的代码基础包路径
package cn.jorian.framework;
import org.springframework.boot.SpringApplication;
import org.springframework.cloud.client.SpringCloudApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;
/**
* @author jorian
*/
@SpringCloudApplication
@EnableEurekaClient //表明这是一个eureka客户端
@EnableFeignClients(basePackages = "cn.jorian.*") //开启feign
public class JCloudConsumerFeignApplication {
public static void main(String[] args) {
// TODO Auto-generated method stub
SpringApplication.run(JCloudConsumerFeignApplication.class, args);
}
}
5.Feign客户端UserClient,代码如下:
仔细观察代码,使用了@FeignClient来表明是哪个应用
package cn.jorian.framework.service;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* 这个接口相当于把原来的服务提供者项目当成一个Service类
* @author jorian
*
*/
@FeignClient("PROVIDER-USER")
public interface UserClient {
/**
* Feign中没有原生的@GetMapping/@PostMapping/@DeleteMapping/@PutMapping,要指定需要用method进行
*
*
* 接口上方用requestmapping指定是服务提供者的哪个controller提供服务
*/
@RequestMapping(value="/user/sayHello",method=RequestMethod.GET)
public String sayHello();
@RequestMapping(value="/user/sayHi",method=RequestMethod.GET)
public String sayHi();
@RequestMapping(value="/user/sayHaha",method=RequestMethod.GET)
public String sayHaha();
}
6.依次启动j-cloud-server,j-cloud-provider1,j-cloud-provider2,j-cloud-consumer-feign
7.在注册中心查看各个服务是否上线
8.访问使用了feign的消费者服务接口:
多次访问,可以看到返回结果已经实现了负载均衡
至此,feign的学习已经完成,
您可以继续查看下一章:springcloud教程 -- 3.微服务熔断机制,断路器hystrix的使用详解
或者下载github完整demo:若对您有用,请star,谢谢