当前位置:   article > 正文

OpenFeign 自定义结果转换_openfeign统一处理返回结果

openfeign统一处理返回结果

Spring Cloud OpenFeign定义的客户端调用远程服务时,默认的解码器只能按照定义的方法返回类型对接口的返回结果进行强制转换,没办法实现一些自定义的逻辑,比如将统一返回的Result类重新拆开,仅返回对应的业务对象,或者对特定的响应码进行处理等等。

  1. public class FeignResultDecoder implements Decoder {
  2. @Override
  3. public Object decode(Response response, Type type) throws IOException, DecodeException, FeignException {
  4. if (response.body() == null) {
  5. throw new DecodeException(response.status(), "没有返回有效的数据", response.request());
  6. }
  7. String bodyStr = Util.toString(response.body().asReader(Util.UTF_8));
  8. if(StringUtils.isNotEmpty(bodyStr)){
  9. //对结果进行转换
  10. Result result = FeignResultDecoder.json2obj(bodyStr, type);
  11. 可以处理成自己需要返回的类
  12. return result;
  13. }
  14. return null;
  15. }
  16. public static <T> T json2obj(String jsonStr, Type targetType) {
  17. try {
  18. JavaType javaType = TypeFactory.defaultInstance().constructType(targetType);
  19. return new ObjectMapper().readValue(jsonStr, javaType);
  20. } catch (IOException e) {
  21. throw new IllegalArgumentException("将JSON转换为对象时发生错误:" + jsonStr, e);
  22. }
  23. }
  24. }

config配置:

实现了Decoder之后,只需要将其配置到CustomizedConfiguration中即可,注意如果CustomizedConfiguration添加了@Configuration的注解,则会成为Feign Client构建的默认配置,这样就不需要在每个@FeignClient注解中都去指定配置类了:

  1. public class CustomizedConfiguration {
  2. @Bean
  3. public Decoder feignDecoder() {
  4. return new FeignResultDecoder();
  5. }
  6. }

在对应的feign上做计入处理

  1. @FeignClient(name = "TestFeign ", configuration = CustomizedConfiguration.class, fallback = TestFeign FallBack.class)
  2. public interface TestFeign {
  3. @GetMapping("/getById")
  4. BaseResponseDto<TestDto> getById(@RequestBody RequestDto<TokenDto> requestDto);
  5. }

类似的方式,我们还可以自定义Feign的Encoder,ErrorDecoder等关键配置组件。

注意:

        这种配置的方式仅限于用注解@EnableFeignClients("xxxx")自动扫描的类@FeignClient注解,如果我们是使用FeignClientBuilder自定义返回的就无法使@FeignClient中的配置name,configuration,url等配置自动生效。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/84586
推荐阅读
相关标签
  

闽ICP备14008679号