현재 JSP 페이지의 경로(path) 얻어오기

By | 4월 9, 2012

* 일단 JSP를 WebContent(혹은 webapp) 하위에 바로 넣는 경우는 거의 없고
   대개 WEB-INF 하위로 숨긴다고 볼 때, 다음의 방법을 조합하여 얻어올 수 있을 것 같다.

1. root ~ WebContent 까지의 경로
   
   어떻게든얻어온 ServletContext.getRealPath("/");

2. WEB-INF ~ JSP까지의 경로

   어떻게든얻어온 ServletConfig.getServletName();

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments