欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

与 <%@ include />的区别

程序员文章站 2024-03-20 21:09:46
...
<%@ include />是在翻译时translation-time起作用,效率高,不能包含servlet
<jsp:include />是在运行时run time才起作用,能获得实时的包含内容,可以包含servlet
同样,在web.xml中定义的
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<include-prelude>/header.jsp</include-prelude>
<include-coda>/footer.jsp</include-coda>
</jsp-property-group>
</jsp-config>

<include-prelude>/header.jsp</include-prelude>
<include-coda>/footer.jsp</include-coda>
也不能包含servlet,他们都是在翻译阶段确定的