티스토리 뷰
(기초)그래서 뭘 배운거야?/JSP
JSP-05-Include > Action Tag Include : 외부로부터 페이지 불러오기
Soheny.P 2021. 10. 27. 20:44728x90
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
// action (tag) include : 액션 태그 이용해 페이지 별도 개발하는 방식, Client에서 요청시 Server에서 요청한 것만 전달 즉, 랜더링 수행 X
// 스크립틀 릿은 Client로 보내지면 지워짐 따라서 랜더링 없이 보내졌음 header, footer라는 것이 없는 것이 됨
//각 jsp:include 밑에 jsp:param과, action-header/footer 상단에 스크립틀릿으로 request.getParameter("header/footer")삽입 필요
String header = "This is for Header";
String footer = "This is for Footer";
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Action (tag) Include</title>
</head>
<body>
<header>
<jsp:include page="action-header.jsp">
<jsp:param value="<%=header%>" name="header"/>
</jsp:include>
</header>
<main>
<section>
<article>main>section>article</article>
</section>
</main>
<footer>
<jsp:include page="action-footer.jsp">
<jsp:param value="<%=footer%>" name="footer"/>
</jsp:include>
</footer>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
String header = request.getParameter("header");
%>
<h1>Header</h1>
<h2><%=header%></h2>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
String footer = request.getParameter("footer");
%>
<p>This is Footer</p>
<h2><%=footer%></h2>
728x90
'(기초)그래서 뭘 배운거야? > JSP' 카테고리의 다른 글
JSP-06-request.getParameter("name명") : name명의 값 가져오기 (0) | 2021.11.01 |
---|---|
JSP-04-Include > Directive Include : 외부로부터 페이지 불러오기 (0) | 2021.10.27 |
JSP-03-스크립틀 릿, 익스프레션으로 테이블 컬러 설정 (0) | 2021.10.27 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- spantag
- 복습
- tabletag
- 줄글
- html
- ptag
- 비전공
- definition List
- tablespan
- 긴문장
- boldtag
- 93점
- imgtag
- usemap
- marktag
- 2021년2회
- hn태그
- emtag
- ol>li
- 단락태그
- 정보처리기사실기
- 정보처리기사
- br tag
- hr tag
- 합격
- 2021년42회
- pretag
- 정처기
- 정보처리기사필기
- ul>li
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
글 보관함