不在Spring MVC中显示图像

时间:2012-10-11 19:41:38

标签: jsp spring-mvc

我知道这个问题已被多次询问,但我无法弄清问题是什么。我有src / main / webapp文件夹下的images文件夹(这是一个maven web项目)。我在src / main / webapp / WEBINF / views文件夹中有index.jsp。

我正在尝试访问像css和js这样的图像和其他资源:

<img src="/images/left_arrow.png" alt="" />

但图像没有显示出来。

这是web.xml文件

<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">

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

<servlet-mapping>
    <servlet-name>mvc-dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>

这是WEB-INF / mvc-dispatcher-servlet.xml文件

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">

<context:component-scan base-package="com.ravi.WebApp" />

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

</beans>

这是控制器     包com.ravi.WebApp;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloController {

@RequestMapping("/")
public String printWelcome(Model model) {
    return "index";

}

}

6 个答案:

答案 0 :(得分:11)

尝试将以下资源声明添加到Spring配置中:

<!-- Handles HTTP GET requests for /images/** by efficiently serving up static resources in the ${webappRoot}/images directory -->
<resources mapping="/images/**" location="/images/" />    

或者,更常见的是,有一个resources文件夹,其中包含所有资源(图像,css,js等等),按子目录划分。

您的配置将如下所示:

<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />

您的资源将被引用如下:

<link rel="stylesheet" type="text/css" href="<c:url value="/resources/css/screen.css" />" />
<script type="text/javascript" src="<c:url value="/resources/js/jquery-1.6.4.min.js" />"></script>
<img src="<c:url value="/resources/images/left_arrow.png" />" alt="" />

答案 1 :(得分:2)

如果使用注释,请确保用户

<mvc:annotation-driven/>

资源

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

否则注释控制器将无法正常工作

答案 2 :(得分:1)

您只需要在Spring MVC配置文件

上添加一个引用您的图像文件夹

WEB-INF /弹簧context.xml中:

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

答案 3 :(得分:1)

请按照此图片中的步骤操作.. :)

步骤1:在webapp中创建一个文件夹,但不在WEB-INF

中创建
  

创建资源然后图像然后存储您的图像。   web应用程序/资源/图像/ fileName.jpg

第2步:现在您已经创建了文件夹

  

让我们映射您在servlet配置文件中创建的路径,在该文件中我们处理路径的映射         添加此代码:       <mvc:resources mapping="/resources/*" location="/resources/" />

第3步: 添加用于从步骤1中创建的位置访问图像资源的代码:      <img src="/attendance/resources/images/logo.png" width="100px" height="100px">

Spring MVC access Image in JSP

答案 4 :(得分:0)

如果要将静态资源保留在Web根目录中的WEB-INF文件夹之外,并希望容器处理静态资源请求,则应将其添加到应用程序上下文文件中:

<mvc:default-servlet-handler />

@BeauGrantham建议添加资源映射也可以。

答案 5 :(得分:0)

上述建议对我也有用。但如果其他人在关联的命名空间方面遇到问题,我必须将mvc部分添加到mvc-dispatcher-serlvet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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 ">

...

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