0

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

这些文件的结构是:

WebContent
-content/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">
4

2 回答 2

6

EL 表达式${}不在纯 HTML 文件中运行。它仅在JSP(和Facelets)文件中运行。在您的特定情况下,只需重命名lab3.htmllab3.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" />
于 2013-08-24T01:59:38.827 回答
1

使用 ${request.contextPath} 而不是 ${pageContext.request.contextPath}

于 2015-01-23T16:36:53.500 回答