我想返回ResponseEntity<List<Payment>>
的格式类型,如何在保持泛型的同时List<Payment>
,使用restTemplate.getForEntity
返回正确的数据类型。
下面的代码是错误的,不兼容的返回类型:
@GetMapping
public ResponseEntity<List<Payment>> getPayment(Payment payment) {
return restTemplate.getForEntity(SERVERURL + "/payment", List.class);
}
提示信息:
Required type:
ResponseEntity <List<Payment>>
Provided:
ResponseEntity<List>
Incompatible equality constraint: List<Payment> and List
将返回类型去掉泛型,返回类型为 ResponseEntity<List>,可以解决兼容问题并返回数据。
@GetMapping
public ResponseEntity<List> getPayment(Payment payment) {
return restTemplate.getForEntity(SERVERURL + "/payment", List.class);
}
但是如何做,才能返回类型匹配 ResponseEntity<List<Payment>>。
@GetMapping
public ResponseEntity<List<Payment>> getPayment(Payment payment) {
List<Payment> list = new ArrayList<>();
return restTemplate.getForEntity(SERVERURL + "/payment", list.getClass());
}
错误提示:
Required type:
ResponseEntity <List<Payment>>
Provided:
ResponseEntity <capture of ? extends List>
Incompatible equality constraint: List<Payment> and capture of ? extends List
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.