Notice
Recent Posts
Recent Comments
Link
«   2024/04   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

작은방

context root 가져오기(JSP, JSTL, EL) 본문

DEV/JSP

context root 가져오기(JSP, JSTL, EL)

손꾸락 2016. 5. 11. 10:38

[ JSP ]

<%=request.getContextPath() %>

→ /root


[ JSTL ]

<c:url value='/' />

→ /root/


[ EL ]

${pageContext.request.contextPath}

→ /root

'DEV > JSP' 카테고리의 다른 글

삼항연산자(EL)  (0) 2016.07.08
EL(Expression Language) 태그  (0) 2016.05.11
Comments