9

我是java和spring的新手。我正在尝试制作 hello world 应用程序,但不要明白我做错了什么。

这是我的目录结构:

test_app
-pom.xml
-src
--main
---java
----com.example.web
-----IndexController.java
---webapp
----static
-----img
------example.jpg
----WEB-INF
-----web.xml
-----dispatcher-servlet.xml
-----jsp
------index.jsp

和来源:web.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC
        "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd" >

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

    <display-name>Movie Reminder WebApp</display-name>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>WEB-INF/dispatcher-servlet.xml</param-value>
    </context-param>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <listener>
        <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
    </listener>
</web-app>

调度程序-servlet.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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.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.xsd">

    <context:annotation-config/>
    <context:component-scan base-package="com.example.web"/>
    <bean id="viewResolver"
          class="org.springframework.web.servlet.view.UrlBasedViewResolver">

        <property name="viewClass"
                  value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

索引控制器.java

package com.example.web;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class IndexController {
    @RequestMapping(value = "/")
    public ModelAndView index() {
        return new ModelAndView("index");
    }
}

索引.jsp

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>Hello Spring!</title>
</head>
<body>
<img src="<c:url value="/static/img/example.jpg" />" />
</body>
</html>

当我部署我的应用程序并请求时,我在图像请求中得到 404

http://localhost:8081/  --- http 200 ok 
http://localhost:8081/static/img/example.jpg - http 404 not found

当我将 mvc:resources 添加到 dispatcher-servlet.xml

<context:annotation-config/>
<context:component-scan base-package="com.example.web"/>
<mvc:resources mapping="/static/**" location="/static/" />

并重新编译我得到 404 到 / 请求

http://localhost:8081/  --- http 404 not foundok 
http://localhost:8081/static/img/example.jpg - http 200 ok

请帮我弄清楚我做错了什么

4

5 回答 5

6

只需将这两行添加到您的dispatcher-servlet.xml

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

以下是文档中的内容default-servlet-handler

通过转发到 Servlet 容器的默认 Servlet 来配置处理静态资源的处理程序。使用此处理程序允许使用“/”映射,DispatcherServlet同时仍使用 Servlet 容器来提供静态资源。此处理程序会将所有请求转发到默认 Servlet。因此,重要的是它在所有其他 URL HandlerMappings 的顺序中保持在最后。如果您使用“注释驱动”元素,或者如果您正在设置自定义的 HandlerMapping 实例,请确保将其“order”属性设置为低于 的值DefaultServletHttpRequestHandler,即Integer.MAX_VALUE.

于 2013-02-07T13:04:17.417 回答
0

这是因为 servlet 映射。所有进来的请求都被路由到 servlet。但是 servlet 不知道如何处理对静态资源的请求。您需要为静态资源添加映射。有几种不同的方法:

  1. 使用网络服务器提供的方式。不幸的是,这取决于您拥有的服务器。

  2. 使用可以提供静态资源的 servlet。

您使用的是什么网络服务器?

于 2013-02-07T12:59:29.713 回答
0

从 Spring 3.0 及更高版本开始,您需要在 Spring 配置中添加以下内容:

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

这告诉您的调度程序 servlet 如何解析静态资源。我希望这有帮助。

于 2013-11-07T15:22:01.460 回答
0

使用这个,它会一直工作。祝你好运:)

@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/resources/**").addResourceLocations("/public-resources/").setCachePeriod(31556926);`enter code here`
    }
}
于 2015-10-21T16:16:27.043 回答
0

我在 web.xml 中配置了默认的 servlet 来服务所有的静态资产,所以只有路由请求会到达控制器:

<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>/resources/*</url-pattern>
</servlet-mapping>
于 2015-10-29T18:06:21.540 回答