parameter param1 처리
JSP 일반적인 처리 방법
<%
String param1 = request.getParameter("param1");
%>
<%=param1%>
JSTL 사용 시 에는
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:out value="${param.param1}" />
<!-- 간략 식 -->
${param.param1}
끝
'Java&Jsp&Servlet' 카테고리의 다른 글
[eclipse] a resource exists with a different case (0) | 2015.09.01 |
---|---|
[JAVA] xml -> String 으로 변환 (0) | 2015.03.11 |
[Java] java.math.BigDecimal cannot be cast to java.lang.String (0) | 2015.03.02 |
[Java] Matches 를 사용하여 서버 OS 정보를 맞춰보자. (0) | 2015.02.23 |
[eclipse] failed to load the jni shared library (0) | 2015.01.11 |