Spring Cloud Feign常见问题

1. FeignClient接口,不能使用@GettingMapping 之类的组合注解

@FeignClient("microservice-provider-user")
public interface UserFeignClient {
  @RequestMapping(value = "/simple/{id}", method = RequestMethod.GET)
  public User findById(@PathVariable("id") Long id);
  ...
}

这边的@RequestMapping(value = “/simple/{id}”, method = RequestMethod.GET) 不能写成@GetMapping(“/simple/{id}”) 。

2. FeignClient接口中,如果使用到@PathVariable ,必须指定其value

@FeignClient("microservice-provider-user")
public interface UserFeignClient {
  @RequestMapping(value = "/simple/{id}", method = RequestMethod.GET)
  public User findById(@PathVariable("id") Long id);
  ...
}

这边的@PathVariable(“id”) 中的”id”,不能省略,必须指定。

3. FeignClient多参数的构造

例如:

http ://microservice-provider-user/query-by?id=1&username=张三

错误写法:使用对象

@FeignClient("microservice-provider-user")
public interface UserFeignClient {
  @RequestMapping(value = "/query-by", method = RequestMethod.GET)
  public User queryBy(User user);
  ...
}

写法1:

@FeignClient("microservice-provider-user")
public interface UserFeignClient {
  @RequestMapping(value = "/query-by", method = RequestMethod.GET)
  public User queryBy(@RequestParam("id")Long id, @RequestParam("username")String username);
}

写法2:

@FeignClient(name = "microservice-provider-user")
public interface UserFeignClient {
  @RequestMapping(value = "/query-by", method = RequestMethod.GET)
  public List<User> queryBy(@RequestParam Map<String, Object> param);
}

4. feign第一次请求会出现time-out,fallback异常

原因:

Hystrix默认的超时时间是1秒,如果超过这个时间尚未响应,将会进入fallback代码。而首次请求往往会比较慢(因为Spring的懒加载机制,要实例化一些类),这个响应时间可能就大于1秒了。

解决:

方法一

hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 5000

该配置是让Hystrix的超时时间改为5秒

方法二

hystrix.command.default.execution.timeout.enabled: false

该配置,用于禁用Hystrix的超时时间
ps:我自己使用这种方法才生效

方法三

feign.hystrix.enabled: false

该配置,用于索性禁用feign的hystrix。该做法除非一些特殊场景,不推荐使用。

5. 当feign返回较为复杂的对象时,会出现类型转换异常

项目中,feign调用url返回一个名为ResponseResult的对象,结果会出现 以下异常:

LinkedHashMap can not be cast to ResponseResult

目前出现原因还未得出,当返回List和简单对象时则不会出现异常

参考:http://itmuch.com/spring-cloud-sum-feign/

    原文作者:Spring Cloud
    原文地址: https://blog.csdn.net/jeffleo/article/details/71493208
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞