gpt4 book ai didi

tomcat - ${pageContext.request.contextPath} 不适用于纯 HTML

转载 作者:行者123 更新时间:2023-11-28 22:34:32 28 4
gpt4 key购买 nike

我正在使用 tomcat 7.0。现在我面临无法加载 css 和 js 文件的问题。尝试添加 ${pageContext.request.contextPath} 但不起作用,还尝试了 c:url 标记,但在 eclipse 中出现语法错误。

这些文件的结构是:

网络内容
-内容/css/lab3.css
html 和 js 文件夹也在 content 文件夹下

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>lab3</display-name>
<welcome-file-list>
<welcome-file>/content/html/lab3.html</welcome-file>
</welcome-file-list>
</web-app>

这是 html 头:

<link rel="stylesheet" type= "text/css" href= "${pageContext.request.contextPath}/css/lab3.css"  media="screen, projection">

最佳答案

EL expressions ${}不在纯 HTML 文件中运行。它在 JSP 中运行(和 Facelets )文件。在您的特定情况下,只需将 lab3.html 重命名为 lab3.jsp,或将以下 JSP servlet 映射添加到 web.xml :

<servlet-mapping>
<servlet-name>jsp</servlet-name> <!-- This is the default servlet name of Tomcat's own JSP servlet. To be sure, look in Tomcat's own web.xml for the exact name. -->
<url-pattern>*.html</url-pattern>
</servlet-mapping>

这将告诉 Tomcat 将所有 .html 文件视为 JSP 文件,因此 EL 将立即在 .html 文件中正常工作。

如果以上都不是可接受的解决方案,那么您需要退回到逻辑思维并正确理解和使用相对路径。与在本地磁盘文件系统中一样,../ 在 URL 中为您带来一个文件夹。假设 HTML 文件在 /content/html/lab3.html 中,CSS 文件在 /content/css/lab3.css 中,那么应该执行以下操作:

<link ... href="../css/lab3.css" />

关于tomcat - ${pageContext.request.contextPath} 不适用于纯 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18413906/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com