[Spring3.0] Spring Web View, 파일 업로드, 파일 다운로드
무작정 개발
2022.03.29(66일 차) 이번에는 Spring Web View와 Spring에서의 파일 업로드, 파일 다운로드에 대해 정리할 것이다. 오늘의 수업 내용 먼저 Spring View에 대해 정리하겠다. 프로젝트 생성 next를 눌렀을 때 패키지는 -> com.exe.springwebview 이 프로젝트에 View, 파일 업로드, 파일 다운로드를 할 것이다. 1. Custom View 1. 기존 방식 확인 (ModelAndView) JSP 파일로 화면 띄우기 HomeComtroller 클래스 생성 package com.exe.springwebview; import org.springframework.stereotype.Controller; import org.springframework.web.bind..