[SpringMVC] - 파일 다운로드
Spring MVC - 파일 다운로드 필자는 간단하게 2번 사용 context.xml 설정 파일 다운로드를 위하여 context.xml에 추가 Util 설정 방법 1 : 경로를 저장한 경우 @Component public class FileDownloadView extends AbstractView{ public void Download(){ setContentType("application/download; utf-8"); } @Override protected void renderMergedOutputModel(Map model,HttpServletRequest request, HttpServletResponse response)throws Exception { setContentType("appli..
2018. 5. 8. 11:40