8

我知道这个问题已经被问过很多次了,但我无法弄清楚问题是什么。我在 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";

}

}
4

6 回答 6

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="" />
于 2012-10-11T19:49:50.070 回答
2

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

<mvc:annotation-driven/>

有资源

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

否则注释控制器将不起作用

于 2014-06-20T09:24:53.717 回答
1

您只需要在 Spring MVC 配置文件中添加一个引用您的图像文件夹

WEB-INF/spring-context.xml:

<mvc:resources mapping="/images/*" location="/images/" />
于 2013-06-09T16:58:54.253 回答
1

请按照这张图片中的步骤.. :)

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

创建资源然后图像然后存储您的图像。webapp/resources/images/fileName.jpg

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

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

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

JSP中的Spring MVC访问Image

于 2017-05-19T16:14:10.987 回答
0

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

<mvc:default-servlet-handler />

@BeauGrantham 添加资源映射的建议也将起作用。

于 2012-10-11T20:03:39.143 回答
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/" />
于 2014-09-18T21:04:44.517 回答