1. Action Tag?
- JSP 스펙에 의해 미리 구현과 정의가 된 태그
- prefix 가 jsp로 시작하고 xml 코딩규칙을 지켜야 한다.
- 반드시 대소문자 구별
- 종류
<jsp:include />
<jsp:forward />
<jsp:param />
<jsp:plug-in />
<jsp:useBean />
<jsp:setProperty />
<jsp:getProperty />

2. include Action Tag
1) RequestDispatcher의 include("/...")
2) pageContext 내장객체의 include(상대URL)
3) <%@ include file="" %>
4) <jsp:include page="" flush="false|true" />
-경로는 상대경로만 가능
5) include directive 와 include action tag 차이점 구별할 것

3. forward Action Tag
1) RequestDispatcher의 forward("/...")
2) pageContext 내장객체의 forward(상대URL)
3) <jsp:forward page="" />

4. param Action Tag
1) forward 하거나 include 하면서 파라미터를 전송할 때 사용
2) <jsp:param name="" value="" />



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

JSP Custom Tag  (1) 2011.03.24
JSP DBCP 사용하기  (2) 2011.03.24
JavaBean  (2) 2011.03.24
JSP 의 내장객체  (1) 2011.03.24
JSP 페이지 구성요소  (1) 2011.03.24

+ Recent posts