0

我阅读了几乎所有关于这个问题的帖子,到目前为止还没有解决方案。

  • 我的 CSS 在 WEB-INF 文件夹之外;
  • 我试过“${pageContext.request.contextPath}”但无济于事;
  • 我在 web.xml 中尝试了以下 servlet 映射,但它会导致NoTargetForURIException

错误 :

PageNotFound  W org.springframework.web.servlet.DispatcherServlet noHandlerFound No mapping found for HTTP request with URI [/webapp/css/util.css] in DispatcherServlet with name 'cm-dispatcher'

我的 JSP:

<link href="${pageContext.request.contextPath}/css/util.css" rel="stylesheet" type="text/css" />

帮助!

4

1 回答 1

0

尝试给出确切的路径,例如 localhost:8080/css/example.css。那就是用绝对路径引用它。您的问题将得到解决。由于它在 WEB-INF 之外,只能通过这样做来解决。

导入时使用 Css 的绝对路径。

于 2012-07-04T19:29:26.213 回答