Spring Web应用程序显示HTTP状态404 -

时间:2016-02-29 10:16:05

标签: java spring spring-mvc

您好我知道这个问题已被多次询问和回答..我在stackoverflow和其他网页上检查了各种问题,但仍无法找到解决方案

我是Spring MVC的初学者。

我正在尝试使用HelloWorld创建一个简单的Spring MVC- Controller程序。

我编写了以下代码,但在我尝试访问HTTP Status 404

时,它给了我http://localhost:5151/SpringMaven/

这是我的项目层次结构

enter image description here

Web.xml中

 <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> 

弹簧配置文件

<context:component-scan base-package="com.evantage.controller" />

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

控制器

@Controller
public class HelloController {


    @RequestMapping("/welcome")
    public ModelAndView helloWorld() {

        String message = "Hello World";
        return new ModelAndView("welcome", "message", message);
    }
}

我已经尝试了2天,但无法取得成功。请指导我

谢谢

4 个答案:

答案 0 :(得分:1)

尝试将其添加到Spring配置文件:

 <mvc:annotation-driven> 

在顶部的架构中添加它:

 http://www.springframework.org/schema/mvc

答案 1 :(得分:1)

尝试使用此web.xml

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</context-param>

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

<servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>com.evantage</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

在您的调度员中启用自动装配:

<!-- Enable autowire -->
<context:annotation-config />

答案 2 :(得分:0)

在dispatcher-servlet中添加这些行。

<context:component-scan base-package="com.evantage"/>
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />

在web.xml中添加这些行

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

让我知道输出是什么。

<强>更新 在dispatcher-servlet.xml中,在<bean>标记中添加这些行。

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

答案 3 :(得分:-1)

因为您尝试访问AndroidMenifest.xml网址,但您已将控制器操作绑定到/SpringMaven路径。

更改/welcome注释以使用预期的网址,或转到@RequestMapping

-edit -

确保您的控制器注册为服务 - 在Spring配置中手动注册或启用MVC注释扫描,以便Spring可以自动查找http://localhost:5151/welcome - 带注释的服务。