![]() |
![]() |
||||
At line 15 changed 1 line. |
* This will include the JSP specified at the beginning and end of each JSP page. It is equivelant to using an include directive such as <%@ include file="relativeFileName" %> at the top and bottom of the JSP. |
* This will include the JSP specified at the beginning and end of each JSP page. It is equivelant to using a static include directive such as <%@ include file="include.jsp" %> at the top and bottom of the JSP and can be used to set various JSP variables. |
At line 20 changed 1 line. |
* On Tomcat, only one <[url-pattern|web.xml.URLPattern]> tag is permitted per <jsp-property-group>. If more than one is provided, only the final one will be used and debugging this condition can be very time consuming ;-) |
* On Tomcat (at least as of Version 5.5.35, 6.0.35 and 7.0.26), only one <[url-pattern|web.xml.URLPattern]> tag is permitted per <jsp-property-group>. If more than one is provided, only the final one will be used and debugging this condition can be very time consuming ;-) |
At line 28 added 4 lines. |
\\ |
!!See Also |
* [SCWCD Study Guide by Mikalai Zaikin|http://java.boot.by/wcd-guide/ch06s07.html] for a good description of the way include directives are handled, and the differences between the static include directive and the dynamic include action |