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
[출처] getContextPath 와 getRequestURI|작성자 하영빠
'기존카테고리 > Java & jsp Tip' 카테고리의 다른 글
Spring에서 한글깨짐 방지를 위해 web.xml에서 한글 설정 (2) | 2017.07.18 |
---|---|
포워딩(Forwarding) - dispatcher, HttpServletResponse (0) | 2017.07.08 |
asp Response.end 또는 php의 exit;와 같은 jsp의 if(true) return; (0) | 2017.07.07 |
체크 박스 받기 (0) | 2017.07.06 |
글자변환(String Replace) 과 날짜 표시 (변환?) (0) | 2017.06.29 |