【RequestParam.value() was empty on parameter 0 with Feign client】

2023-12-15 18:28:21

今天遇到了一个很奇怪的问题,我创建一个Feign客户端,去call另外一个微服务的接口,

@GetMapping("/api/test")
    public ResponseEntity<String> getXXXValue(@RequestParam StringString timestamp,
                                                    @RequestParam String type,
                                                    @RequestParam String String XXX);

遇到了下面的报错信息
在这里插入图片描述

RequestParam.value() was empty on parameter 0.

非常奇怪我还对比之前的FeignClient,没有发现有什么异常的地方,
后面去google找到一篇文章,说是我的参数没有加上name参数导致的。
修改后的代码:

@GetMapping("/api/test")
    public ResponseEntity<String> getXXXValue(@RequestParam("timestamp") StringString timestamp,
                                                    @RequestParam("type") String type,
                                                    @RequestParam("XXX") String String XXX);

问题得到解决,详细信息可以去传送门。
https://itecnote.com/tecnote/spring-feign-client-with-spring-boot-requestparam-value-was-empty-on-parameter-0/

文章来源:https://blog.csdn.net/qq_17011423/article/details/135022131
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。