List<CustomerDto> ff=new RestTemplate().getForObject("http://localhost:8000/"+customerDto.getPhoneNo(), List.class);
当我运行这段代码时,其给出的错误为 “ message”:“ java.util.LinkedHashMap无法转换为com.ms_cust.CustomerDto”
即使我测试了“ http://localhost:8000/” + customerDto.getPhoneNo()“其返回的客户详细信息列表,但与RestTemplate一起使用时也会出错。 谁能帮帮我。