📅  最后修改于: 2021-01-05 01:07:15             🧑  作者: Mango
jsp:include动作标签用于包含另一个资源的内容,它可以是jsp,html或servlet。
jsp include操作标记在请求时包含资源,因此它对动态页面更好,因为将来可能会发生变化。
jsp:include标记可用于包含静态和动态页面。
代码可重用性:我们可以多次使用一个页面,例如在所有页面中都包含页眉和页脚页面。这样可以节省大量时间。
JSP include directive | JSP include action |
---|---|
includes resource at translation time. | includes resource at request time. |
better for static pages. | better for dynamic pages. |
includes the original content in the generated servlet. | calls the include method. |
在此示例中,index.jsp文件包含printdate.jsp文件的内容。
this is index page
end section of index page
<% out.print("Today is:"+java.util.Calendar.getInstance().getTime()); %>