[JSP]jsp include

2013. 9. 27. 15:40WEB/JSP(JAVA)



반응형

JSP include 사용법  액션태그, 지사자, 메서드가 있슴 

액션태그 :<jsp:include>

지시자 : <%@ include >

메소드 :  RequestDispatcher dispatcher = request.getRequestDispatcher("NowTime.jsp");

dispatcher.include(request, response);



아래 사진과 소스를 보고 이해하길...



<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>타이틀</title>

</head>

<body>

<h3>(include 메서드사용방법)지금 시각은 ??</h3>

<%

//동적지시문이라고도 함 이미 infor.jsp랑 NowTime.jsp 가 각각 컴파일함

out.flush(); 

RequestDispatcher dispatcher = equest.getRequestDispatcher("NowTime.jsp");

dispatcher.include(request, response);

%>


</body>

</html>






<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>김영준은 까리</title>

</head>

<body>

<h3>(표준액션 사용할때)지금 시각은 ??</h3>

<jsp:include page="NowTime.jsp"/>

</body>

</html>




<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>김영준은 까리</title>

</head>

<body>

<h3>(include 지시자 이용할시)지금 시각은 ??</h3>

<!-- 정적인 지시문이라고도함 삽입후 한꺼번에 컴파일 이루어짐 -->

<%@include file ="NowTime.jsp" %>

</body>

</html>



공통적인 부분

NowTime.jsp

<%@page import="sun.util.calendar.Gregorian"%>

<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<%@page import="java.util.*"%>


<% GregorianCalendar now = new GregorianCalendar();  %>

현재 시간은 : <%=String.format("%TF %TT", now,now) %>




반응형

'WEB > JSP(JAVA)' 카테고리의 다른 글

[JSP]Oracle CLOB 사용  (0) 2013.12.07
Eclipse SVN 날짜, 유저 설정  (1) 2013.12.05
jsp session 세션  (2) 2013.09.27
[JSP]dynamic web project 만들기  (0) 2013.09.26
JSP page 지시자(Directive)  (0) 2013.09.16