${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");
'프로그래밍 > JSP' 카테고리의 다른 글
까먹을까봐 적는, JSP의 input에서 id와 name의 차이 (0) | 2020.12.30 |
---|---|
form action + input submit 조합을 가져올 수 있는 파라미터(인자) (0) | 2020.09.30 |