Including a File in a JSP Page
To include an HTML or JSP fragment in a JSP file, the include
directive is used. The effect is essentially equivalent to replacing
the directive with the contents of the included file. This means that
an included fragment can access any objects defined in the main JSP
page.
The include file specified by include directive is always
relative to the file containing the include directive. For
example, if a file A.jsp includes dir/B.jsp which in turn
includes C.jsp, C.jsp is assumed to be in the directory
dir.
This example includes a file called relativeFragment.jsp which is located
in the same directory as the current file:
This example includes a file called /absoluteFragment.jsp
which is located relative to the web application's root:
At the time the main JSP page is accessed, the include directive
permanently captures the current contents of an included
file. Changes to the included file will not affect the results of the
main JSP page. If the application depends on capturing the contents
of the included file at the time of each request, then an include
action should be used.
These examples demonstrate how to use an include action to
dynamically include the contents of a relative or absolute fragment at
every request:
It is also possible to dynamically choose the file to include.
This example determines the file to include from a request parameter:
See also Passing Parameters to Another JSP Page.
<%@ include file="relativeFragment.jsp" %>
<%@ include file="/absoluteFragment.jsp" %>
<jsp:include page="relativeDynFragment.jsp" />
<jsp:include page="relativeDynFragment.html" />
<jsp:include page="/absoluteDynFragment.jsp" />
<jsp:include page="/absoluteDynFragment.html" />
<jsp:include page='<%= request.getParameter("incFile") %>' />
Post a comment