본문 바로가기

기존카테고리/Java & jsp Tip

getContextPath 와 getRequestURI

Contect : <%=request.getContextPath()%>

URI : <%=request.getRequestURI()%>

URL : <%=request.getRequestURL()%>

Path : <%=request.getServletPath()%>

 

request.getContextPath() : 프로젝트 path만 얻어온다.

예) http://localhost:8081/board/list.jsp

     return: /board

 

request.getRequestURI() : 프로젝트와 파일경로까지 얻어온다.

예) http://localhost:8081/board/list.jsp

     return: /board/list.jsp

 

String url = request.getRequestURI.split("/");

String fName = url[url.length -1]; //list.jsp