JSP 服务器错误页面的动态内容

发布于 2025-01-11 19:49:44 字数 862 浏览 1 评论 0原文

我有一个关于如何为 500 错误页面配置 JSP 文件的问题。

在这种情况下,有多个主题,其文件夹结构如下所述。 所有相关主题都使用此 JSP,但我需要找到一种动态更改徽标的方法,因此它不会在 JSP 以及此特定 JSP 文件的 css 文件中进行硬编码。

正如我测试的那样,我发现我无法在此特定页面中使用 cms 标签或模板。

输入图片这里的描述

<c:url value="/_ui/responsive/theme-moveit/images/moveit_logo.jpg" var="logo" />
<c:url value="/_ui/responsive/theme-hausmannHaensgen/images/hausmannHaensgen_logo.png" var="logo2" />

<div class="nav__left js-site-logo">
    <a href="${pageContext.request.contextPath}">
        <img src="${logo}" alt="MoveIT24">
        <img src="${logo2}" alt="hausmannHaensgen">
    </a>
</div>

我想知道如何找到一种方法来区分这两个主题,以便我可以限制应该显示哪个徽标。 同样的想法也适用于切换一些颜色。

非常感谢任何建议,谢谢!

I have a questions regarding on how to configure the JSP file for the 500 error page.

In this scenario, there are multiple themes with a folder structure described below.
All the themes in question use this JSP, but I would need to find a way to change the logo dynamically, so it is not hardcoded in the JSP as well as the css file for this particular JSP file.

As I tested I see that I cannot use cms tags or templates inside this particular page.

enter image description here

<c:url value="/_ui/responsive/theme-moveit/images/moveit_logo.jpg" var="logo" />
<c:url value="/_ui/responsive/theme-hausmannHaensgen/images/hausmannHaensgen_logo.png" var="logo2" />

<div class="nav__left js-site-logo">
    <a href="${pageContext.request.contextPath}">
        <img src="${logo}" alt="MoveIT24">
        <img src="${logo2}" alt="hausmannHaensgen">
    </a>
</div>

I was wondering on how could I find a way to differentiate between the two themes so I can condition which logo should be shown.
The same idea should be apllied to switch some colors.

Any suggestions are highly appreciated, thanks!

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

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

发布评论

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

评论(1

天荒地未老 2025-01-18 19:49:44

我通过使用隐藏输入找到了解决方案并获取了 URL:

<input id="themeName" type="hidden" value="${pageContext.request.serverName}">

我在 JS 函数中使用了服务器名称,并相应地更改了徽标,并创建了一个链接标记以使用正确的 css 文件。

I found a solution by using a hidden input and got the URL:

<input id="themeName" type="hidden" value="${pageContext.request.serverName}">

I used the server name in a JS function and changed the logo accordingly and created a link tag to use the correct css file.

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