for downloading a file using Spring, I'm using GET method.
@RequestMapping(value = "/exportar/{tipo}", method = RequestMethod.GET)
@ResponseBody
public void exportar(HttpServletResponse response,@PathVariable TipoEnum tipo) throws IOException{
File file = service.exportar(tipo);
response.setHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", file.getName() + ".xls"));
response.setContentType("application/ms-excel; charset=UTF-8");
InputStream inputStream = new BufferedInputStream(new FileInputStream(file));
FileCopyUtils.copy(inputStream, response.getOutputStream());
}
How can I achieve this using POST? Is this possible?
@RequestMapping(value = "/exportar", method = RequestMethod.POST)