JSP Basics: Include Directive to Read Content at Compile Time

JSPs are compiled entities. Two include techniques read the included content before and after compilation. This tech-recipe describes the compiled include directive.


When including a file header.jsp with the following syntax, the contents of header.jsp are read into the JSP before it is compiled:

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

Subsequent changes to the header.jsp file will not be included in the JSP until the JSP is recompiled.

 

About Quinn McHenry

Quinn was one of the original co-founders of Tech-Recipes. He is currently crafting iOS applications as a senior developer at Small Planet Digital in Brooklyn, New York.
View more articles by Quinn McHenry

The Conversation

Follow the reactions below and share your own thoughts.

Leave a Reply

You may also like-

How to Manually Install Tomcat on Windows 7How to Manually Install Tomcat on Windows 7Apache Tomcat is an open source web server and servlet container created by the Apache Software Foundation. It's used to execute to Java servlets ... JSP Basics: Import a Java Class for Use in a JSPJSP Basics: Import a Java Class for Use in a JSPImporting Java classes enables the use of that class without using the fully qualified class name. Java classes can also be imported into JSPs ...