2012-06-21 112 views
1

我花了最後幾個小時,試圖找出如何從一個jsp訪問靜態ressources在Spring MVC Web應用程序。JSP訪問Spring MVC的資源

這裏是我的豆子配置文件的一部分:

<mvc:resources mapping="/images/**" location="/images/" /> 
<mvc:resources mapping="/css/**" location="/css/" /> 

現在在第一個JSP頁面位於/css/style.css我的CSS文件正常工作是這樣的:

<link rel="stylesheet" href="css/style.css" type="text/css" /> 

,但在第二個JSP我無法訪問這張圖片位於/images/logo.gif

<img src="images/logo.gif" alt="anotherimage" /> 

有人可以解釋<mvc:ressources />如何與jsp協同工作嗎?

編輯: 這裏是我的上下文

<?xml version="1.0" ?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xmlns:p="http://www.springframework.org/schema/p" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
      http://www.springframework.org/schema/context 
      http://www.springframework.org/schema/context/spring-context-3.0.xsd 
      http://www.springframework.org/schema/mvc 
      http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 
      http://www.springframework.org/schema/aop 
      http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
      http://www.springframework.org/schema/tx 
      http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> 

    <bean name="viewResolver" 
     class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <property name="prefix" value="/WEB-INF/jsp/" /> 
     <property name="suffix" value=".jsp" /> 
     <property name="exposeContextBeansAsAttributes" value="true" /> 
    </bean> 


    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> 
     <property name="driverClassName" value="com.mysql.jdbc.Driver" /> 
     <property name="url"    value="jdbc:mysql://localhost/test" /> 
     <property name="username"   value="root" /> 
     <property name="password"   value="" /> 
    </bean> 

    <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> 
     <property name="dataSource" ref="dataSource" /> 
     <property name="packagesToScan" value="mmapp.domain" /> 
     <property name="hibernateProperties"> 
      <value> 
       hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect 
      </value> 
     </property> 
    </bean> 

    <bean id="transactionManager"  class="org.springframework.orm.hibernate4.HibernateTransactionManager"> 
     <property name="sessionFactory" ref="sessionFactory" /> 
    </bean> 
    <bean id="jdbcTemplate"  class="org.springframework.jdbc.core.simple.SimpleJdbcTemplate"> 
     <constructor-arg ref="dataSource" /> 
    </bean> 

    <bean id="simpledata" class="mmapp.util.SimpleDataProvider" /> 

    <tx:annotation-driven transaction-manager="transactionManager" /> 
    <context:annotation-config /> 
    <context:component-scan base-package="mmapp" /> 

    <mvc:default-servlet-handler/> 
    <mvc:resources mapping="/images/**" location="/images/" /> 
</beans> 

和我的web.xml

<?xml version="1.0" ?> 

<web-app version="2.4" 
    xmlns="http://java.sun.com/xml/ns/j2ee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:shemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> 

    <servlet> 
     <servlet-name>mmapp</servlet-name> 
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 

    <servlet-mapping> 
     <servlet-name>mmapp</servlet-name> 
     <url-pattern>/</url-pattern> 
    </servlet-mapping> 

</web-app> 
+0

通過我的閱讀,應該不是被/images/logo.gif「?也許CSS目錄是相對於當前目錄下,並且,允許在該方式加載該文件。 – Marvo

+0

我已經試過了,它沒有工作。 – elaich

回答

1

<mvc:default-servlet-handler/> 
<mvc:resources mapping="/images/**" location="/images/" /> 
<mvc:resources mapping="/css/**" location="/css/" /> 

後能得到你的CSS /圖片:

<link rel="stylesheet" href="${pageContext.request.contextPath}/css/style.css" type="text/css" /> 
<img src="${pageContext.request.contextPath}/images/logo.gif" alt="anotherimage" /> 
+0

它給了我一個404錯誤所請求的資源()不可用。 – elaich

+0

你真的有下的WebContent圖像logo.gif /圖像/ logo.gif? –

+0

我可以用我的瀏覽器這樣的訪問'http:// localhost:8080/mmapp/images/logo.gif' – elaich

2

訪問資源的最安全的方法是使用JSTL核心庫。至少,您可以確定在任何情況下都會生成正確的網址。下面的代碼行添加到您的JSP文件:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 

並更改img標籤使用C:URL標籤:

<img src="<c:url val="/images/logo.gif" />" alt="anotherimage" /> 

確保您進行此更改後您的src屬性看起來不錯。您還必須將jstl庫添加到您的項目中(可能是一個好主意,因爲它非常標準)。就我所知,您的mvc:資源映射看起來很好。

0

我不知道這是否是有意義的,但這裏是我已經解決了這一點:

第一我的控制器看起來像:

@Controller 
@RequestMapping(value="/reports") 
public class ReportsController { 

    @RequestMapping(value = "/reporting", method = RequestMethod.GET) 
    public String onSubmit() { 
     return "home" ; 
    } 
} 

隨着上述所有配置listeb,我不得不改變我的img標籤在我回到Home.jsp從<img src="images/logo.gif" /><img src="../images/logo.gif" />,事,物效果很好,如果我從我的第二@RequestMapping刪除value = "/reporting"它的<img src="images/logo.gif" />它的工作!