即使在Spring中将/ resource / **映射到/ resource /之后仍然出现404错误

时间:2016-05-12 06:25:34

标签: java spring spring-mvc

我已将资源locust.jslocust.css文件映射到文件夹资源,如图所示:

enter image description here

目录结构

mvc-config.xml文件具有以下配置设置:

<mvc:annotation-driven />
<mvc:resources mapping="/resources/**" location="/resources/" />


<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
             <!-- Example: a logical view name of 'showMessage' is mapped to '/WEB-INF/jsp/showMessage.jsp' -->
            <property name="prefix" value="/WEB-INF/view/"/>
            <property name="suffix" value=".jsp"/>
</bean>

我尝试加载locust.jslocust.css文件时收到404错误。 jsp文件正在正确呈现。

任何线索我在哪里错了?

1 个答案:

答案 0 :(得分:0)

Spring无法加载locust.js和locust.css文件,因为我的root(“/”)文件夹指向“webapp”文件夹,因此spring无法解析路径,因为资源在'webapp'之外夹。 感谢。