У меня есть следующий код:Как скачать изображение с помощью шаблона отдыха?
restTemplate.getForObject("http://img.championat.com/news/big/l/c/ujejn-runi_1439911080563855663.jpg", File.class);
Я особенно принял образ, который не требует разрешений и доступны абсолютно для всех.
когда следующий код выполняет я вижу следующую трассировку стека:
org.springframework.web.client.RestClientException: Could not extract response: no suitable HttpMessageConverter found for response type [class java.io.File] and content type [image/jpeg]
at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:108)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:559)
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:512)
at org.springframework.web.client.RestTemplate.getForObject(RestTemplate.java:243)
at com.terminal.controller.CreateCompanyController.handleFileUpload(CreateCompanyController.java:615)
, что делать я неправильно?
я не расслышал, который technolohy можно использовать для загрузки файла – gstackoverflow
** ResponseEntity responseEntity = restTemplate.getForObject ("http://img.championat.com/news/big/l/c/ujejn-runi_1439911080563855663. jpg ", ResponseEntity.class) ** тоже не работает –
gstackoverflow
Да, моя точка зрения ...' RestTemplate' - не самый подходящий инструмент для этой работы ... – pioto