无法在JSP

时间:2016-02-28 07:45:16

标签: html css spring jsp

Here is the directory structure of my project .

我在webapp的resources文件夹中有css文件。 我已经尝试通过这个

在spring-servlet中映射资源
<mvc:resources mapping="/resources/**" location="/webapp/resources"  
cache-period="31556926"/>

但它不起作用。如何在JSP页面中包含此CSS

将css链接到此

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

1 个答案:

答案 0 :(得分:0)

src/main/webapp中的文件位于其根目录中的war,因此您的资源位置不得有/webapp

<mvc:resources mapping="/resources/**" location="resources/"  cache-period="31556926"/>

BTW:在您所在位置的END处添加斜杠!