1、getForObject的定义如下:

    public <T> T getForObject(URI url, Class<T> responseType) throws RestClientException {
        RequestCallback requestCallback = this.acceptHeaderRequestCallback(responseType);
        HttpMessageConverterExtractor<T> responseExtractor = new HttpMessageConverterExtractor(responseType, this.getMessageConverters(), this.logger);
        return this.execute(url, HttpMethod.GET, requestCallback, responseExtractor);
    }

当responseType的泛型T中包含 List 的时候,结果无法转换成 List,这时候便会包ClassCastException 错误

 

2、解决方案

使用 exchange() 方法代替 getForObject

示例:RegulateCommand 为带有 List 的类

RegulateCommand regulateCommandResult = restTemplate.exchange(customConfig.getBaseUrl() + "/sws/regulate_pressure/executing",
                HttpMethod.GET,
                null,
                new ParameterizedTypeReference<RegulateCommand>() {}).getBody();

 

相关文章:

  • 2021-09-10
  • 2022-12-23
  • 2021-12-11
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-28
  • 2021-05-20
  • 2022-02-10
  • 2021-04-25
  • 2021-12-30
  • 2022-12-23
相关资源
相似解决方案