Spring RestTemplate,返回List <string> </string>

时间:2012-01-19 14:16:49

标签: java spring rest jaxb resttemplate

是否可以直接返回List<String>作为JAXB响应而不将其包装在响应对象中?例如,

public List<String> foo(Bar bar) {
    return restTemplate.postForEntity("http://foo.com/bar", bar, List.class);
}

目前我收到错误

  

无法写入请求:找不到合适的HttpMessageConverter请求类型[my.pkg.Bar]

HttpMessageConverters 已正确配置为Bar的其他GET / POST请求。

1 个答案:

答案 0 :(得分:0)

我只能使用String [] .class作为类型。