jsp 지시문은 웹 컨테이너에 JSP 페이지를 상응하는 서블릿으로 변환하는 방법을 알려주는 메시지입니다.
syntax : <%@ page attribute="value" %>
The import attribute is used to import class,interface or all the members of a package.It is similar to import keyword in java class or interface.
<%@ page import="java.util.Date" %>
Today is: <%= new Date() %>
작성할 문서의 타입 지정
<%@ page contentType="text/html; charset=euc-kr" %>
The buffer attribute sets the buffer size in kilobytes to handle output generated by the JSP page.The default size of the buffer is 8Kb.
<%@ page buffer="16kb" %>
<%@ page isThreadSafe="false" %>
JSP 페이지에서는 여러 JSP 페이지에서 공통적으로 포함하는 내용이 있을 때 매번 입력하지 않고 별도의 파일로 만들어 두었다가 필요한 JSP 페이지내에 추가를 할 수 있는 기능을 제공하는데 이것이 include Directive이다.
syntax : <%@ include file="resourceName" %>
출처: https://yuihorie1004.tistory.com/entry/JSP-include-Directive에-대해서 [꿈꾸는 개발자..]
이부분은 JSPL에서 좀 더 알아보고 작성하자.