如何在 Spring MVC 中显示 jsp 文件中的图像

How to display images in a jsp file in Spring MVC

我对 spring 很陌生。我正在使用 spring 3.29 版本,tomcat 7. 我需要在 .jsp 文件中显示图像。我搜索了很多。关于这个问题有很多post。但我仍然无法解决这个问题。请帮忙。

以下是我的申请结构

以下是我的spring-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: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.2.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.wipro.controller" />
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.UrlBasedViewResolver">
        <property name="viewClass">
            <value>
                org.springframework.web.servlet.view.tiles2.TilesView
            </value>
        </property>
    </bean>
    <bean id="tilesConfigurer"
        class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
        <property name="definitions">
            <list>
                <value>/WEB-INF/tiles.xml</value>
            </list>
        </property>
    </bean>
</beans>

我有一个页面 footer.jsp。我需要在这个文件中添加一个图像 以下是代码

<!-- Here I need to add an image -->
<hr/>  
<p>Copyright  2010-2014 javatpoint.com.</p>  

在 spring-servlet.xml

中添加以下行
<resources mapping="/images/**" location="/images/" />

以及 jsp

<link rel="icon"
href="http://<hostname>/projectname/images/imageName"/>

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

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

或者,更常见的是有一个资源文件夹,其中包含所有资源(图像、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" />"

我在我的页面中得到了图片。 @Pankaj Saboo 的评论很有帮助。谢谢大家。

我在spring-servlet.xml

中添加了以下代码
<mvc:annotation-driven />
<mvc:resources mapping="/images/**" location="WEB-INF/resources/images/" />

并且在 footer.jsp 我添加了下面的代码

<img src="<c:url value="/images/wipLogo.png" />"/>