返回由 ResponseEntity<List> 返回的 List<myObj>
2022-09-02 19:14:07
我的 REST 客户端使用 RestTemplate 获取对象列表。
ResponseEntitiy<List> res = restTemplate.postForEntity(getUrl(), myDTO, List.class);
现在我想使用返回的列表,并将其作为List返回给调用类。对于字符串,可以使用 toString,但是列表的解决方法是什么?