- <%@ include file=」filename」 %> is the JSP include directive.
At JSP page translation time, the content of the file given in the include directive is ‘pasted’ as it is, in the place where the JSP include directive is used. Then the source JSP page is converted into a java servlet class. The included file can be a static resource or a JSP page. Generally JSP include directive is used to include header banners and footers. The JSP compilation procedure is that, the source JSP page gets compiled only if that page has changed. If there is a change in the included JSP file, the source JSP file will not be compiled and therefore the modification will not get reflected in the output. java
- <jsp:include page=」relativeURL」 /> is the JSP include action element.
The jsp:include action element is like a function call. At runtime, the included file will be ‘executed’ and the result content will be included with the soure JSP page. When the included JSP page is called, both the request and response objects are passed as parameters. If there is a need to pass additional parameters, then jsp:param element can be used. If the resource is static, its content is inserted into the calling JSP file, since there is no processing needed. jsp
-
因此用<jsp:include page="${actionjs}" />能夠動態指定要包含的file,由於這個動做元素能夠是在執行jsp文件生成的class可編譯文件的時候纔去找page屬性相關的那個文件。 spa
-
而用<jsp:directive.include file="/js/erp/hr/genericReport/GenericReportAction.js" />只能寫死包含的文件。 element