gpt4 book ai didi

java - 调用休息 Web 服务时出错

转载 作者:行者123 更新时间:2023-12-01 09:25:08 25 4
gpt4 key购买 nike

我有一个休息网络服务,它返回 java.util.List<String> 。请参阅下面的代码。

@RequestMapping(value = MyRequestMapping.GET_SIG_DATA, method = RequestMethod.GET)
@ResponseBody
public List<String> getSigDataValues(@PathVariable final String acc, final HttpServletResponse response)
throws Exception {

List<String> dataList = null;
try {
//logic goes here
} catch (Exception e) {
LOG.error("Exception" + e);
}
return dataList;
}

上面的Web服务没有返回任何responseDTO对象,它只是返回一个String类型的列表。

我想从另一个应用程序调用上面的网络服务。下面是我的代码。

 public List<String> getSigData(String acc){

return restTemplate.postForObject(DataURL.GET_SIG_DATA.value(), MyRequestDTO.class,MyResponseDTO.class, acc);
}

编译时抛出以下错误消息:

[javac] found   : com.data.client.MyRequestDTO
[javac] required: java.util.List<String>
[javac] return restTemplate.postForObject(DataURL.GET_SIG_DATA.value(), MyRequestDTO.class,MyResponseDTO.class,acc);
^

请指出我哪里出错了。

最佳答案

试试这个

 public List<String> getSigData(String acc){

return (List<String>)restTemplate.postForObject(DataURL.GET_SIG_DATA.value(), List.class,List.class, acc);
}

关于java - 调用休息 Web 服务时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39899678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com