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?
Asked
Active
Viewed 386 times
0
-
Please give us some context. What is IDM? – Stephan Rauh Sep 10 '21 at 19:10
-
I am sorry, Internet Download Manager is grabbing the file before it is loaded by ngx-extended-pdf-viewer – MikiEthiopia Sep 13 '21 at 05:54
1 Answers
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