Spring Web: Download a File from a service via a Spring Service

522 Views Asked by At

I want to be able to download a file from a legacy service through a middle-layer Spring Web service. The problem currently is that I am returning the contents of the file and not the file itself.

I've used FileSystemResource before, but I do not want to do this, since I want Spring to only redirect and not create any files on the server itself.

Here is the method:

@Override
public byte[] downloadReport(String type, String code) throws Exception {
    final String usernamePassword = jasperReportsServerUsername + ":" + jasperReportsServerPassword;
    final String credentialsEncrypted = Base64.getEncoder().encodeToString((usernamePassword).getBytes("UTF-8"));
    final HttpHeaders httpHeaders = new HttpHeaders();
    httpHeaders.add("Accept", MediaType.APPLICATION_JSON_VALUE);
    httpHeaders.add("Authorization", "Basic " + credentialsEncrypted);
    httpHeaders.setAccept(Arrays.asList(MediaType.APPLICATION_OCTET_STREAM));
    final HttpEntity httpEntity = new HttpEntity(httpHeaders);
    final String fullUrl = downloadUrl + type + "?code=" + code;

    return restTemplate.exchange(fullUrl, HttpMethod.GET, httpEntity, byte[].class, "1").getBody();
}
1

There are 1 best solutions below

0
On BEST ANSWER

Turns out I was missing this annotation parameter in my *Controller class:

produces = MediaType.APPLICATION_OCTET_STREAM_VALUE

The whole method of the controller should look like this:

@RequestMapping(value = "/download/{type}/{id}", method = RequestMethod.GET, produces = MediaType.APPLICATION_OCTET_STREAM_VALUE)
    public ResponseEntity<?> downloadReport(@PathVariable String type, @PathVariable String id) throws Exception {
        return new ResponseEntity<>(reportService.downloadReport(type, id), HttpStatus.OK);
    }