将CSS文件链接到JSP的问题

时间:2015-03-19 16:24:19

标签: html css jsp spring-mvc

我正在尝试将css链接到我的jsp页面,但我一直收到404页面找不到错误。

homepage.jsp中的

href:   <link href="../resources/css/welcome.css" rel="stylesheet" />

file structure:
-->webapp
  -->img 
  -->resources
    -->css
      -->welcome.css
  -->WEB-INF
    -->views
      -->homepage.jsp

1 个答案:

答案 0 :(得分:0)

当你正在使用Spring MVC时:

<link href="<c:url value="/resources/css/welcome.css" />" rel="stylesheet">

如果您讨厌JSTL,可以使用“页面上下文”变量来获取这样的资源:

<link href="${pageContext.request.contextPath}/resources/css/welcome.css" rel="stylesheet" >