JSP Directives JSP Directives: JSP directive elements provide information to JSP container about the page . <%@ directive attribute="value" %> There are three types of directive tags: Directive Description <%@ page ... %> Defines page-dependent attributes, such as scripting language, error page, and buffering requirements. <%@ include ... %> Includes a file during the translation phase. <%@ taglib... %> Declares a tag library, containing custom actions, used in the page JSP page directive: Gives high-level information about the servlet that will result from the JSP page. Can control: –Which classes are imported? –What class the servlet extends –What MIME type is generated? –How multithreading is handled –If the servlet participates in sessions –The size and behavior of the output buffer –What page handles unexpected errors? The page dir