map.put("year", "2013");
map.put("sunCourses", courses.size());
Map<String,Object> obj = new HashMap<String, Object>();
map.put("obj", obj);
obj.put("name", courses.size());
workbook = ExcelExportOfTemplateUtil.exportExcel(new TemplateExportParams("export/template/exportTemp.xls"),
CourseEntity.class, courses,map);
fOut = response.getOutputStream();
workbook.write(fOut);
} catch (Exception e) {
} finally {