Spring Boot 和 Feign Client 解析 Enum参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 和 Feign Client 解析 Enum参数相关的知识,希望对你有一定的参考价值。

参考技术A SpringBoot中Enum解析默认使用的是EnumToStringConverter,默认转成枚举的名称。
响应返回的JSON,Enum也默认解析为name。
有时候不使用枚举的name,而是value来进行返回,参数解析。

这时候提交gender=1会解析失败,可以通过配置MessageConvertFactory实现解析。
定义StringToEnumConverterFactory:

配置mvc

这时候调用访问,Feign会把gender转成name来进行访问 ?gender=MALE ,这个情况下服务端肯定报错,因为我们的Enum解析已经不是name了。
所以要配置下FeignClient,支持Enum也转成JsonValue注解的值进行访问。
定义Converter:

配置FeignClient:

通过以上三个步骤,就可以实现Enum参数的请求和响应了。

更新到 Spring Boot 1.5.8 和 Finchley/Edgware Spring Cloud 后 Feign Exception 403

【中文标题】更新到 Spring Boot 1.5.8 和 Finchley/Edgware Spring Cloud 后 Feign Exception 403【英文标题】:Feign Exception 403 after updating to Spring Boot 1.5.8 and Finchley/Edgware Spring Cloud 【发布时间】:2018-04-30 08:11:16 【问题描述】:

我对微服务比较陌生,我一直在尝试使用这个proof-of-concept application,它使用了Spring BootSpring Cloud

问题在于,虽然应用在 Spring Boot 1.3.5Spring Cloud Brixton.RELEASE 上运行良好,但在升级其中任何一个时都会中断。

注册新账号时出现错误,报如下错误:

status 403 reading AuthServiceClient#createUser(User); content:↵"timestamp":1510753211255,"status":403,"error":"Forbidden","message":"Access Denied","path":"/uaa/users"

还有堆栈跟踪:

2017-11-15 15:40:11.284 ERROR 9072 --- [nio-6000-exec-1] o.a.c.c.C.[.[.[.[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [/accounts] threw exception [Request processing failed; nested exception is feign.FeignException: status 403 reading AuthServiceClient#createUser(User); content: "timestamp":1510753211255,"status":403,"error":"Forbidden","message":"Access Denied","path":"/uaa/users"] with root cause

由于这似乎是一个 Feign 错误,而 AuthServiceClient.java 似乎是罪魁祸首,我将其包含在此处:

@FeignClient(name = "auth-service")
public interface AuthServiceClient 

@RequestMapping(method = RequestMethod.POST, value = "/uaa/users", consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
void createUser(User user);


由于没有对代码进行任何更改,我不明白可能是什么原因以及如何解决此错误。

【问题讨论】:

【参考方案1】:

显然有这个神奇的属性让它再次起作用:

security.oauth2.resource.filter-order: 3 

auth-service.properties

在此处进一步阅读: SpringBoot 1.5.x + Security + OAuth2

【讨论】:

以上是关于Spring Boot 和 Feign Client 解析 Enum参数的主要内容,如果未能解决你的问题,请参考以下文章

带有 feign 和 hystrix 的 Spring Boot:无法让请求超时工作

Spring Boot Cloud + Ribbon + Feign + Hystrix + Zookeeper:重试和失败是怎么回事?

Spring Cloud-Feign Http客户端

Spring Boot 和 Feign Client 解析 Enum参数

更新到 Spring Boot 1.5.8 和 Finchley/Edgware Spring Cloud 后 Feign Exception 403

在 Spring Boot 中安排 OAuth + Feign