본문 바로가기

JSP

JSP 표준 액션 태그

1. forward 액션

- pageContext.forward(URL); //순수 자바

- <jsp:forward page="URL"> // XML - >액션태그



2. include 액션

- <%@ include file="URL" %> 

- <jsp:include page="URL"> // XML - >액션태그



3. <jsp:useBean>

4. <jsp:setProperty>

5. <jsp:getProperty>







'JSP' 카테고리의 다른 글

JSP 파일 업로드  (0) 2018.11.16
JSP Session vs Cookie (세션과 쿠키)  (0) 2018.11.16
JSP 내장 객체 및 생명주기(Scope)  (0) 2018.11.14
JSP session 객체  (0) 2018.11.14
JSP application 객체  (0) 2018.11.14