how can i return a file to rest API with spring bo...
# getting-started
l
how can i return a file to rest API with spring boot?
l
try
Copy code
@Produces(MediaType.APPLICATION_OCTET_STREAM)
and
Copy code
response.addHeader("Content-disposition", "attachment;filename=\"" + file.getName() + "\"");
n
please check #spring 🚓