如何创建母版页?

发布于 2024-12-11 12:58:43 字数 70 浏览 0 评论 0原文

我需要在 JSP 中创建一个母版页,以供其他 JSP 使用,以便它们具有相同的外观和菜单。我怎样才能在 JSP 中做到这一点?

I need to create a master page in JSP to be used by other JSPs for them to have the same look and feel and menus. How can I do that in JSP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千秋岁 2024-12-18 12:58:43

您可以使用

<%@ include file="/absoluteFragment.jsp" %>

<jsp:include page="relativeDynFragment.jsp" />

要了解差异,另请参阅 http://www.jguru。 com/faq/view.jsp?EID=13517

<%@include file="abc.jsp"%> 指令的作用类似于 C "#include",提取包含文件的文本并编译它,就好像它是包含文件的一部分一样。包含的文件可以是任何类型(包括 HTML 或文本)。

标记将该文件编译为单独的 JSP 文件,并将对其的调用嵌入到已编译的 JSP 中。

You can use either

<%@ include file="/absoluteFragment.jsp" %>

or

<jsp:include page="relativeDynFragment.jsp" />

To know the difference see also http://www.jguru.com/faq/view.jsp?EID=13517:

The <%@include file="abc.jsp"%> directive acts like C "#include", pulling in the text of the included file and compiling it as if it were part of the including file. The included file can be any type (including HTML or text).

The <jsp:include page="abc.jsp"> tag compiles the file as a separate JSP file, and embeds a call to it in the compiled JSP.

温柔女人霸气范 2024-12-18 12:58:43

您可以使用 标记或 JSP 模板。如果您熟悉 JSF (JavaServer Faces 技术)然后使用 Facelets

You can use <jsp:include /> tag or JSP Templates. In case if you are familiar with JSF (JavaServer Faces technology) then use Facelets.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文