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

时间:2015-09-29 10:17:11

标签: spring jsp spring-mvc tiles2

我对春天很新。我使用的是spring 3.29版本,tomcat 7.我需要在.jsp文件中显示一个图像。我搜索了很多。关于这个问题有很多帖子。但我仍然无法解决这个问题。请帮忙。

以下是我的申请结构

The following is my application structure

以下是我的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>

我有一个页脚foot.jsp。我需要在此文件中添加图像 以下是代码

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

3 个答案:

答案 0 :(得分:4)

我的页面中有图像。 @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" />"/>

答案 1 :(得分:2)

在spring-servlet.xml中添加以下行

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

和jsp

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

答案 2 :(得分:1)

尝试将以下资源声明添加到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" />"