SpringQueryMap -SpringCloud feign get method 接受自定义对象参数

本文探讨了Feign客户端与Spring MVC控制器在处理GET请求参数时的区别,特别是对象参数的绑定。揭示了默认情况下Feign不支持将对象直接映射为查询参数,以及如何通过@SpringQueryMap注解解决这一问题。
摘要由CSDN通过智能技术生成

 

 

feign中和controller中不一样的地方
controller中可以get方法使用对象参数无需任何注解,可默认绑定到对象!

 

示例代码如下:

    @GetMapping(value =ClueClient.LIST_OPERATIONS)
    public CrmResult<List<RysClueOperateBO>>  getOperateLists(
            @NotNull(message = "clueId必传") @PathVariable(name = "clueId") Long clueId,
             RysClueOperateListQTO rysClueOperateListQTO) {
        log.info("clueId:{},rysClueOperateListQTO:{}",clueId,JSON.toJSON(rysClueOperateListQTO));

}
public interface ClueClient {

    String LIST_OPERATIONS  = "/clues/{clueId}/operations";

    @GetMapping(LIST_OPERATIONS)
    CrmResult<List<RysClueOperateBO>>  getOperateLists(@NotNull(message = "clueId")
                               @PathVariable(name = "clueId") Long clueId,
                                                        RysClueOperateListQTO rysClueOperateListQTO);

}

  1.  spring mvc controller mapping 能自动装配参数到RysClueOperateQTO中。访问服务这个接口,能正常打印请求的参数。
  2.  但消费者通过feignclient 调用服务。服务不能正常打印参数。RysClueOperateQTO是空对象。
  3. 引入@SpringQueryMap注解解决问题。https://cloud.spring.io/spring-cloud-openfeign/reference/html/#feign-querymap-support

 

The OpenFeign @QueryMap annotation provides support for POJOs to be used as GET parameter maps. Unfortunately, the default OpenFeign QueryMap annotation is incompatible with Spring because it lacks a value property.

Spring Cloud OpenFeign provides an equivalent @SpringQueryMap annotation, which is used to annotate a POJO or Map parameter as a query parameter map.

  

 

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jiguansheng

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值