当我使用 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 方法时,将对象作为参数传递,在端点服务实现中,对象属性为空。
有人遇到过这样的问题吗?我的配置有什么错误吗?