我阅读了几乎所有关于这个问题的帖子,到目前为止还没有解决方案。
- 我的 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" />
帮助!