본문 바로가기
프로그래밍/JSP

[JSTL] JSP에서 자주 쓰이는 JSTL 표현

by 소소로드 2020. 9. 24.

${hello}                => request.getAttribute("hello");       // hello 객체를 표현

${hello.test}           => request.getAttribute("hello.test");  // hello 객체의 test변수 표현

${requestScope.data}    => request.getParameter("data");

${param.data}           => request.getParameter("data");

${paramValue.data}      => request.getParameterValues("data");

${sessionScope.id}      => session.getParameter("id");

${applicationScope.address} => application.getParameter("address");