There is an Angular 6 app having a feature to download pdf files. It uses REST API from another Spring Boot application to download files.
The requirement is that i need
You could use file-saver library as follow:
file-saver
import { saveAs } from 'file-saver'; ... awesomeDownloader(url: string, fileName: string) { const blobFile = functionsThatGetsTheBlob(url); saveAs(blobFile, fileName); } ...