0

How to view pdf directly in ngx-extended-pdf-viewer when a client has IDM installed? I am using Angular 10 and spring boot rest api to download the file?

Stephan Rauh
  • 3,069
  • 2
  • 18
  • 37
MikiEthiopia
  • 129
  • 1
  • 1
  • 5

1 Answers1

1

I changed my code as this and it works perfectly the pdf file is not grabed by the Internet Download Manager.

@RequestMapping("/downloadFile")
    public FileSystemResource download(@RequestParam Long documentId, HttpServletRequest request) throws IOException {
        Resource resource = storageService.loadAsResource(documentId);
        return new FileSystemResource(resource.getFile());
    }
MikiEthiopia
  • 129
  • 1
  • 1
  • 5