반응형
contextPath
EL 표현식 사용 시 | ${pageContext.request.contextPath} |
JSP에서 스크립트 사용 시 | <%=request.getContextPath() %> |
프로젝트 Path만 가져온다
실제 주소 예시 | 가져오는 값 |
http://localhost:8080/mvcMain/write.do | /mvcMain |
https://localhost:8080/card/main.do | /card |
requestURL
EL 표현식 사용 시 | ${pageContext.request.requestURL} |
JSP에서 스크립트 사용 시 | <%=request.getRequestURL() %> |
프로젝트 + 파일경로
WEB-INF의 실제 JSP 경로를 가져옴
실제 주소 예시 | 가져오는 값 |
http://localhost:8080/mvcMain/write.do | http://localhost:8080/mvcMain/WEB-INF/views/write.jsp |
https://localhost:8080/card/main.do | http://localhost:8080/card/WEB-INF/views/MainPage.jsp |
requestURI
EL 표현식 사용 시 | ${pageContext.request.requestURI} |
JSP에서 스크립트 사용 시 | <%=request.getRequestURI() %> |
localhost뒤에 프로젝트 이름부터 끝까지 가져옴
실제 주소 예시 | 가져오는 값 |
http://localhost:8080/mvcMain/write.do | mvcMain/WEB-INF/views/write.jsp |
https://localhost:8080/card/main.do | card/WEB-INF/views/MainPage.jsp |
반응형
'코딩 관련 > Spring 관련' 카테고리의 다른 글
[Spring] Controller에서 alert 띄우기 (0) | 2020.10.08 |
---|---|
[Spring][AJAX] spring ajax success 뜨지 않는 경우 (0) | 2020.09.22 |
[Spring] 배열값 VO로 DB에 레코드들 insert하기 (0) | 2020.09.17 |
[Spring] 하나의 form에서 VO 여러개 전달하기 (0) | 2020.09.16 |
[Spring] 아파치 로그찍기 log4j 사용 (0) | 2020.09.16 |