이전에 파일업로드 할때 다음과 같이 업로드 경로를 사용하였다.

ServletContext context = getServletContext();

String uploadPath = context.getRealPath("upload"); 

 

근데 전자정부 표준 프레임워크를 사용하다가 상단의 코드 대신 세션을 사용하여 다음과 같이 사용하였다.

String uploadPath = request.getSession().getServletContext().getRealPath("upload"); 

+ Recent posts