본문 바로가기

JAVA/JSP & Servlet

표준 액션(standard action) : Include

 

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

 

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>표준액션 : Include</title>

</head>

<body>

 

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

 

</body>

</html>

 

 

 

Copyright.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

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

 

<b>포함되어질 페이지</b><br><br>

 

<%

        GregorianCalendar now = new GregorianCalendar();

        String date = String.format("%TY %Tm %Td", now, now, now);

        String time = String.format("%Tp %TR", now, now);

%>

[현재 시각] &nbsp; <%=date %> &nbsp; <%=time %>