https://lordofkangs.tistory.com/35
request.getContextPath() 함수 = 프로젝트 Path만 가져옴
예) http://localhost:8080/project/list.jsp
[return] /project 를 가져옴
request.getRequestURI() 함수 = 프로젝트 + 파일경로까지 가져옴
예) http://localhost:8080/project/list.jsp
[return] /project/list.jsp 를 가져옴
String url = request.getRequestURI.split("/");
String Name = url[url.length -1]; // list.jsp
request.getRequestURL() 함수 = 전체 경로를 가져옴
예) http://localhost:8080/project/list.jsp
[return] http://localhost:8080/project/list.jsp
request.ServletPath() 함수 = 파일명만 가져옴
예) http://localhost:8080/project/list.jsp
[return] /list.jsp
request.getRealPath("") 함수 = 서버 or 로컬 웹 애플리케이션 절대경로 가져옴
예) http://localhost:8080/projectname/list.jsp
[return] c:\project\webapps\projectname\