Hello
I have a download functionality where I downlaod the file from HttpServletReponse
.
I just write the ResponseEntity<byte[]>
from Spring to HttpServletReponse
.
Something like this.
https://stackoverflow.com/questions/5673260/downloading-a-file-from-spring-controllers
I have to do some implementation where I need to convert the HttpServletReponse
to write a Aspose.words document.
Do some actions on Aspose words Document and then save it.
How can I achieve the functionality mentioned inside Stars in bold.