DispatcherServlet 不会重定向到适当的视图

DispatcherServlet doesn't redirect to the appropriate view

在请求适当的视图时,我不断收到 404 not found HTTP 响应。

这些是我的配置文件。

web.xml

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xmlns="http://java.sun.com/xml/ns/javaee"
             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>ssytem-ecommerce-prototype-view</display-name>

        <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath*:appContext.xml</param-value>
        </context-param>

        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>

        <servlet>
            <servlet-name>dispatcherServlet</servlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <init-param>
                <param-name>contextConfigLocation</param-name>
                <param-value>/WEB-INF/mvc-config.xml</param-value>
            </init-param>
            <load-on-startup>1</load-on-startup>
        </servlet>

        <servlet-mapping>
            <servlet-name>dispatcherServlet</servlet-name>
            <url-pattern>/</url-pattern>
        </servlet-mapping>

    </web-app>

mvc-config.xml

    <?xml version="1.0" encoding="UTF-8"?>

    <beans:beans xmlns="http://www.springframework.org/schema/mvc"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:beans="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

        <annotation-driven></annotation-driven>
        <context:annotation-config></context:annotation-config>
        <context:component-scan base-package="ma.pack.net.*"></context:component-scan>

        <resources mapping="/resources/**" location="/resources/" />
        <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <beans:property name="prefix" value="/WEB-INF/view/" />
            <beans:property name="suffix" value=".html" />
        </beans:bean>

    </beans:beans>

HomeController.java

    package ma.pack.net;

    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestMethod;

    @Controller
    public class HomeController {

        @RequestMapping(value = "/", method = RequestMethod.GET)
        public String home() {
            return "entry";
        }
    }

entry.html

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title>Insert title here</title>
    </head>
    <body>
        <b>Hello, This is the Front Page</b>
    </body>
    </html>

我不知道我在哪里犯了错误,我尝试更改控制器映射的名称、页面名称、页面扩展名,但我一直得到相同的输出。

我通过修改一些配置文件解决了我的问题。

只要我想操作 html 而不是 jsp 文件,这意味着我们正在寻找静态内容,所以我所要做的就是更改我的 mvc-config.xml 文件到此.

    <?xml version="1.0" encoding="UTF-8"?>

    <beans:beans xmlns="http://www.springframework.org/schema/mvc"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:beans="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

        <annotation-driven></annotation-driven>
        <context:annotation-config></context:annotation-config>
        <context:component-scan base-package="ma.pack.net"></context:component-scan>

        <resources mapping="/static/**" location="/WEB-INF/static/"></resources>


    </beans:beans>

我也把我的HomeController.javaclass改成了下面的

    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestMethod;

    @Controller
    public class HomeController {

        @RequestMapping(value = "/", method = RequestMethod.GET)
        public String home() {
            return "static/entry.html";
        }
    }

现在 ViewResolver 没有干扰以生成适当的视图。

回退到 "Default" Servlet 来提供资源

这允许将 DispatcherServlet 映射到“/”(从而覆盖容器默认 Servlet 的映射),同时仍然允许静态资源请求由容器的默认 Servlet 处理。它使用 URL 映射“/**”和相对于其他 URL 映射的最低优先级配置 DefaultServletHttpRequestHandler

此处理程序会将所有请求转发到默认的 Servlet。因此,重要的是它在所有其他 URL HandlerMappings 的顺序中保持最后。如果您使用 <mvc:annotation-driven> 就会出现这种情况;如果您要设置自己的自定义 HandlerMapping 实例,请务必将其顺序 属性 设置为低于 DefaultServletHttpRequestHandler 的顺序 Integer.MAX_VALUE.

要使用默认设置启用该功能,请使用:

@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable();
    }

}

或在XML:

<mvc:default-servlet-handler/>

覆盖“/”Servlet 映射的警告是默认 Servlet 的 RequestDispatcher 必须按名称而不是路径检索。 DefaultServletHttpRequestHandler 将在启动时尝试 auto-detect 容器的默认 Servlet,使用大多数主要 Servlet 容器的已知名称列表(包括 Tomcat、Jetty、GlassFish、JBoss 、树脂、WebLogic 和 WebSphere)。如果默认 Servlet 已自定义配置为不同的名称,或者如果在默认 Servlet 名称未知的情况下使用不同的 Servlet 容器,则必须明确提供默认 Servlet 的名称,如下例所示:

@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable("myCustomDefaultServlet");
    }

}

或在XML:

<mvc:default-servlet-handler default-servlet-name="myCustomDefaultServlet"/> 

你的mvc-config.xml

<mvc:default-servlet-handler />