Java EE web.xml:如何从中排除单个页面

发布于 2024-09-29 15:00:41 字数 238 浏览 2 评论 0原文

我希望在所有页面上,除了一个(header.jsp)之外,都像这段代码一样包含尾声:

<jsp-property-group>
    <url-pattern>*.jsp</url-pattern>
<include-coda>footer.jsp</include-coda>

我只是不明白如何限制模式以排除 header.jsp

I want on all pages BUT ONE (header.jsp) to include-coda like in this code:

<jsp-property-group>
    <url-pattern>*.jsp</url-pattern>
<include-coda>footer.jsp</include-coda>

I just don't get how I can limit the Pattern to exclude header.jsp

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

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

发布评论

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

评论(1

情域 2024-10-06 15:00:41

使用不覆盖 header.jsp 的更具体的 url-pattern。例如,将这些 JSP 放在一个文件夹中,并使用 /foldername/* 作为 url-pattern 代替。或者,为 JSP 指定不同的扩展名,使其与 url-pattern 不匹配,例如 header.jspf(JSP 片段)。

Use a more specific url-pattern which doesn't cover the header.jsp. E.g. put those JSPs in a folder and use /foldername/* as url-pattern instead. Or, give the JSP a different extension so that it doesn't match the url-pattern, e.g. header.jspf (JSP fragment).

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