0

当我使用 netflix 客户端发送 POST 请求时,当它到达服务使用者时,json 属性是空白的。

下面是我的界面

@FeignClient(name = "NLPService",  configuration = FooConfiguration.class )
public interface NLPServiceConsumer  extends TempInterface {    
}


public interface TempInterface {

    @RequestMapping("/greeting")
    String greeting();

    @RequestMapping(method = RequestMethod.POST,value="/nlp",
            consumes="application/json",produces="application/json")
    NLPResponse identifyTags(NLPInputToBeTransformed nlpInputToBeTransformed);

    @RequestMapping(method = RequestMethod.GET,value="/nlpGetMethod",
            produces="application/json")
    NLPResponse identifyTagsTest();


}

方法 identifyTagsTest 有效,我能够成功获得响应。此方法是没有输入的 GET 方法

当我尝试 POST 方法时,将对象作为参数传递,在端点服务实现中,对象属性为空。

有人遇到过这样的问题吗?我的配置有什么错误吗?

4

1 回答 1

1

问题不在于假客户。这是在服务实施

在这个问题上花了将近一天的时间。RestController 还必须指定@RequestBody(除了共享接口)

@FeignClient 可以扩展 - 和 @RestController 实现 - 一个通用的、完全注释的接口吗?

于 2017-08-31T14:21:46.283 回答