org.springframework.web.servlet.DispatcherServlet noHandlerFound

时间:2014-09-23 22:09:37

标签: java spring tomcat

我在访问http://api:8080/users 404时遇到此错误,我在控制台中收到此错误:

  

2014年9月23日下午5:57:52 org.springframework.web.servlet.DispatcherServlet noHandlerFound       警告:在名为“dispatcher”的DispatcherServlet中找不到带有URI [/ users]的HTTP请求的映射

当我访问http://localhost:8080/api/users时,我在浏览器中获得了404但在我的控制台中没有错误

的applicationContext.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"
    xsi:schemaLocation="
        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">

    <context:component-scan base-package="com.api"/>
</beans>

调度-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:aop="http://www.springframework.org/schema/aop"
  xmlns:tx="http://www.springframework.org/schema/tx"
  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/aop
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context.xsd
    ">

  <context:component-scan base-package="com.api"/>      
</beans>

的web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">

  <servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>2</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

Users.java:

package com.api;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RequestMapping("/users")
public class Users {
     @Autowired
     public Users() {

     }

    @RequestMapping(method = RequestMethod.GET)
    public void getUser() {
        System.out.println("\nhere\n");
    }
}

如果有人有任何线索我会非常感激。我已经查找了几个与我得到的相同错误的问题,但是常见的解决方案是添加我已经存在的错误,所以我不确定还能做什么。感谢。

编辑:我刚刚将所有代码更新为最新的参考文档,我仍然得到同样的错误。 编辑:更新以显示我当前的文件状态。

10 个答案:

答案 0 :(得分:4)

花了一整天后,我才知道解决方案。 创建Maven项目时,默认情况下,它不会在“ javaResource / src / main”下创建“ java”文件夹,这是获取控制器路径所必需的。

确保首先在“ javaResource / src / main”内部创建Java文件夹,然后创建程序包和控制器。

随附屏幕截图,以供参考。

enter image description here

答案 1 :(得分:2)

这是一个常见的错误 确保pom.xml中的组ID是

中提到的组ID
    </context:component-scan>  

例如 如果是组Id-com.cavesofprogramming.spring.web那么

    <context:component-scan base- package="com.cavesofprogramming.spring.web.controllers">

效果是在maven构建中找不到控制器         结果映射没有完成正确的jsp。

答案 2 :(得分:1)

将您的web.xml更改为

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">

  <servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>2</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

和dispatch-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:aop="http://www.springframework.org/schema/aop"
  xmlns:tx="http://www.springframework.org/schema/tx"
  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/aop
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

  <context:component-scan base-package="com.api"/>
</beans>

您的代码无需applicationContext.xml即可运行

答案 3 :(得分:0)

需要在spring-context.xml中添加以下行

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

Note: property prefix and suffix need to modify based on your application like  .jsp if you are using jsp files.

答案 4 :(得分:0)

原因-此问题背后的主要原因是servlet.xml文件无法找到可以重定向您的请求的正确控制器。

解决方案-确保几件事:

  1. 在servlet.xml文件中,基本包应指向控制器类所在的正确路径。

  2. 在控制器类中应该提到
  3. @Controller。

  4. 在控制器类中,@ RequestMapping值应与web.xml url-pattern参数相同。

  5. 在控制器类中,ModelAndView返回的.jsp页应该位于指向ViewResolver的servlet.xml前缀值的相同路径上。

答案 5 :(得分:0)

我也遇到过同样的问题  org.springframework.web.servlet.DispatcherServlet noHandlerFound

我要在邮递员中输入其他网址来解决此问题,只需检查邮递员您输入的是哪个网址

答案 6 :(得分:0)

我刚刚检查了servlet.xml文件并解决了问题:

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

答案 7 :(得分:0)

这是我如何解决这个问题以及我做错了什么。

在创建具有Web原型的Maven项目时,我们在main下没有java目录。您将必须手动创建它并在其下添加目录。此目录是servlet.xml所需的基本软件包。

servlet.xml以及附加的基本软件包映像的位置以供参考

View image for viewing the project

答案 8 :(得分:0)

从一个项目复制到另一个项目时,我遇到了类似的问题。我错过了添加index.jsp

添加此内容可以解决我的问题。希望对您有所帮助。

答案 9 :(得分:0)

在maven中,未创建'java'文件夹。我创建为src / main / java,此问题已解决。

在这篇文章中,jyot也建议这样做。 org.springframework.web.servlet.DispatcherServlet noHandlerFound