2013-08-22 42 views
6

我試圖使用標籤<mvc:resources>Spring MVC的:資源標記和404錯誤

這是我的項目結構

enter image description here

我要的是訪問的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錯誤。我認爲這個與當前的項目有些衝突。

+0

您需要精確獲取有效答案。你寫道:「我運行該項目時出現錯誤404」 - 你問哪個URL?!和你期望的文件(位置)? – Ralph

+0

您在瀏覽器中點擊了哪些網址,我們將需要您的豆配置文件 –

+0

抱歉,在運行項目時,它將重定向到login.htm,這意味着login.jsp頁面。 –

回答

-1

因爲資源文件是在折JS和風格,您需要更改映射:

<mvc:resources mapping="/js/**" location="/js/" /> 
<mvc:resources mapping="/styles/**" location="/styles/" /> 

並加載它們在JSP:

<script type="text/javascript" src="/js/file.js"></script> 
<link type="text/css" href="/styles/file.css" /> 
1

你需要設置的完整路徑位置屬性如下:

<mvc:resources mapping="/resources/js/**" location="/js/" /> 

一個單獨的註釋,我會建議你把你的資源全部一個文件夾放在一起,例如「資產」,因爲在您當前的設置中,惡意用戶可以在WEB-INF /下訪問任何東西,這顯然不是您想要的。

讓我知道這是否工作。

艾曼

+1

關於WEB-INF文件夾的提示錯誤!因爲如果請求的路徑包含「WEB-INF」,「META-INF」或有效路徑以「..」開頭,Springs'ResourceHttpRequestHandler'不會返回資源! (在'ResourceHttpRequestHandler.isValidPath(String)'中實現) – Ralph