Include Directive
<jsp:include>
- Incorporates content generated by another document into the current page
- Takes two attributes
- page = “local URL”
- Can be another JSP, a servlet, or a static page
- flush = “true”
- Required at the moment (should be relaxed in future versions of the API)
Note that these includes are done at request time
- This is in contrast to <%@ include file=“…” %> directive