[Spring] 엑셀 다운로드
controller /* 엑셀 다운로드 */ @GetMapping(value={ STATISTICS.STATISTICS_EXCEL_DOWNLOAD }) public void getStatisticsExcel(@ModelAttribute StatisticsInfo statisticsInfo, HttpServletRequest req, HttpServletResponse res, Principal principal) throws Exception { String mbrId = principal.getName(); if(mbrId == null) { mbrId = ""; } statisticsInfo.setMbrId(mbrId); /** 통계 리스트 조회 */ List list = statisticsServi..