Spring’de AbstractExcelView ile oluşturduğunuz excel dosyasının adı genelde, url’in son parçası olur, kod ile bir isim vermek için:

@RequestMapping(value="/excel", method = RequestMethod.POST)
public ModelAndView getReportExcel(HttpServletResponse response, Model model) {
	...
	
	response.setHeader("Content-Disposition", "attachment; filename=\"my_report_file.xls\"");
	
	...
}