Creating a file download link using Spring Boot and Thymeleaf
You need to change the th:href
to look like:
<a th:href="@{|/products/download?id=${product.id}|}"><span th:text="${product.name}"></span></a>
Then also you need to change your controller and include the @ResponseBody
annotation:
@RequestMapping(value="/products/download", method=RequestMethod.GET)
@ResponseBody
public FileSystemResource downloadFile(@Param(value="id") Long id) {
Product product = productRepo.findOne(id);
return new FileSystemResource(new File(product.getFileUrl()));
}
Have a href url like
<a th:href="@{|/download?id=${obj.id}|}">download</a>
Then In controller define like below to write the file to the response object.
@RequestMapping(value="/download", method=RequestMethod.GET)
public void downloadFile(@Param(value="id") Long id,HttpServletResponse response) {
try {
Ticket ticket = this.findById(id);
String fileName = Paths.get(property.getFileLocation()).resolve(ticket.getFilePath()).toString();
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
String headerKey = "Content-Disposition";
String headerValue = String.format("attachment; filename=\"%s\"", fileName);
response.setHeader(headerKey, headerValue);
FileInputStream inputStream;
try {
inputStream = new FileInputStream(fileName);
try {
int c;
while ((c = inputStream.read()) != -1) {
response.getWriter().write(c);
}
} finally {
if (inputStream != null)
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
response.getWriter().close();
}
} catch (IOException e) {
e.printStackTrace();
}
}