조각이론
request.getContextPath() ,request.getRequestURI() 등 url 주소 가져오는 함수 본문
JSP 자바 코딩에서 다양한 url 주소 가져오는 함수를
정리할게요 ㅎ
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() 함수 = 전체 경로를 가져옵니다. (L만 바뀜)
예) 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\
'스프링' 카테고리의 다른 글
[자바]미니 블록체인 만들기 (0) | 2018.12.19 |
---|---|
JSTL(JSP Standard Tag Library) Core Tag 실습 (0) | 2018.12.15 |
02.IBatis를 이용하여 DAO 작성 (0) | 2018.12.15 |
JSTL - <c:import, url, redirect> (0) | 2018.12.10 |
HTTP 응답 코드 종류 && HTTP 메소드 종류 (0) | 2018.12.09 |