我試圖使用標籤<mvc:resources>
Spring MVC的:資源標記和404錯誤
這是我的項目結構
我要的是訪問的JavaScript在JS文件夾和css在風格文件夾
然而,每當我添加此我調度-servlet.xml中
<mvc:resources mapping="/resources/**" location="/"/>
我得到了錯誤404,運行時項目(該項目將重定向到login.htm這是login.jsp頁面)
這是我的調度員servlet.xml的代碼
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
<context:component-scan base-package="com.swcommodities.wsmill.controller"/>
<mvc:resources mapping="/resources/**" location="/"/>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/"
p:suffix=".jsp" />
<tx:annotation-driven/>
.
.
.
</beans>
這是網絡.XML
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>redirect.jsp</welcome-file>
</welcome-file-list>
我不知道爲什麼我刪除該行<mvc:resources...
項目運行正常,但如果添加此一個項目,我立刻得到404錯誤。我認爲這個與當前的項目有些衝突。
您需要精確獲取有效答案。你寫道:「我運行該項目時出現錯誤404」 - 你問哪個URL?!和你期望的文件(位置)? – Ralph
您在瀏覽器中點擊了哪些網址,我們將需要您的豆配置文件 –
抱歉,在運行項目時,它將重定向到login.htm,這意味着login.jsp頁面。 –