Feign是一个声明式的Web服务客户端,使用Feign可使得Web服务客户端的写入更加方便。
它具有可插拔注释支持,包括Feign注解和JAX-RS注解、Feign还支持可插拔编码器和解码器、Spring Cloud增加了对Spring MVC注释的支持,并HttpMessageConverters在Spring Web中使用了默认使用的相同方式。Spring Cloud集成了Ribbon和Eureka,在使用Feign时提供负载平衡的http客户端。
使用Feign.builder封装SDK
Feign提供了Feign.builder()客户端的构造方法,可以轻松的访问远程的URL,不依赖其他服务。这种方式的用法是将远程的URL,封装成纯接口SDK,供其他用户或系统使用。
1.添加mvn依赖,只使用Feign的依赖即可
io.github.openfeign
feign-core
9.5.0
2.定义FeignClient接口调用RESTFUL接口
public interface FeignClient {
@RequestLine("GET /user/login")
public String login(@Param("username") String username, @Param("password") String password);
}
3.封装SDK
public class SDK{
public static void login(String username,String password){
FeignClient feignClient = Feign.builder()
.target(FeignClient.class, "http://localhost");
feignClient.login(username,password);
}
/** 测试*/
public static void main(String[] args) {
login("lsz","lsz");
}
}
使用SpringCloud及Eureka服务管理
这种方式是需要添加SpringCloud组件的一些依赖及注解,还需要依赖Spring的容器管理。
1.添加依赖
org.springframework.cloud
spring-cloud-starter-feign
org.springframework.cloud
spring-cloud-starter-zuul
org.springframework.boot
spring-boot-starter-test
test
dependency>
org.springframework
spring-web
4.3.10.RELEASE
org.springframework.cloud
spring-cloud-dependencies
Dalston.SR2
pom
import
2.定义UserFeignClient 接口
与SDK不同的是,接口上需要有FeignClient及Component的注解。@Component的含义是将该组件注册到SpringCloud中,接受Spring容器的管理,使用依赖注入得到该接口的实体;@FeignClient注解中可以指定“name”与“url”,如果程序为Eureka客户端,指定name为服务注册中心的名,会去服务注册中心去查找访问的host地址
@Component //springboot中注册该组件
@FeignClient(name="user-server",url = "http://localhost:8011")
public interface UserFeignClient {
@RequestMapping("/{id}")
public User findByIdFeign(@RequestParam("id") Long id);
}
3.定义访问UserFeignClient的controller
@Component
public class UserServiceImpl implements UserService {
@Autowired
private UserFeignClient userFeignClient;
@Override
public User findByIdFeign(String id) {
User object = this.userFeignClient.findByIdFeign("1111");
return object;
}
}
Feign的这两种用法,都是不错的。
feign默认是集成Hystrix,如果想要解除Hystrix,feign提供了两种方式 :
(1)、是通过application.yml中增加这个:
feign.hystrix.enabled: false ## 索性禁用feign的hystrix支持;这样就全部禁止掉Hystrix
(2)、feign提供了对单个Client的禁止,通过配置类来实现,看下面代码:
package com.itmuch.cloud.feign;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import com.itmuch.config.Configuration2;
@FeignClient(name = "xxxx", url = "http://localhost:8761/", configuration = Configuration2.class, fallback = FeignClient2Fallback.class)
public interface FeignClient2 {
@RequestMapping(value = "/eureka/apps/{serviceName}")
public String findServiceInfoFromEurekaByServiceName(@PathVariable("serviceName") String serviceName);
}
对应的Configuration2类如下:
package com.itmuch.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Scope;
import feign.Feign;
import feign.auth.BasicAuthRequestInterceptor;
@Configuration
public class Configuration2 {
@Bean
public BasicAuthRequestInterceptor basicAuthRequestInterceptor() {
return new BasicAuthRequestInterceptor("user", "password123");
}
@Bean
@Scope("prototype")
public Feign.Builder feignBuilder() {
return Feign.builder();
}
}