<jsp:getProperty name="member" property="name"/> == ${member.name}
<%
application.setAttribute("application_name", "application_value");
session.setAttribute("session_name", "session_value");
pageContext.setAttribute("page_name", "page_value");
request.setAttribute("request_name", "request_value");
%>
<%
String id = request.getParameter("id");
String pw = request.getParameter("pw");
%>
아이디 : <%= id %> <br />
비밀번호 : <%= pw %>
<hr />
아이디 : ${ param.id } <br />
비밀번호 : ${ param.pw } <br />
<!-- 같은 표기 방법임 -->
아이디 : ${ param["id"] } <br />
비밀번호 : ${ param["pw"] }
<hr />
applicationScope : ${ applicationScope.application_name }<br />
sessionScope : ${ sessionScope.session_name }<br />
pageScope : ${ pageScope.page_name }<br />
requestScope : ${ requestScope.request_name }
<hr />
context 초기화 파라미터<br />
${ initParam["con_name"] } <br />
${ initParam.con_id } <br />
${ initParam.con_pw } <br />