web-dev-qa-db-ja.com

org.springframework.web.servlet.PageNotFound noHandlerFound;警告:DispatcherServletにURIを持つHTTPリクエストのマッピングが見つかりません

答えを得るために多くのフォーラムやブログを調べましたが、役立つヒントやアドバイスを得ることができませんでした。ですから、以下の問題で誰かが助けてくれるなら、それは大きな助けになるでしょう。

http://localhost:8080/SpringApp/helloに接続しようとすると、以下の警告とエラーが発生します。

INFO: Server startup in 6935 ms
Jul 19, 2014 11:15:42 AM org.springframework.web.servlet.PageNotFound noHandlerFound
WARNING: No mapping found for HTTP request with URI [/SpringApp/] in DispatcherServlet with name 'HelloWeb'
Jul 19, 2014 11:16:29 AM com.example.Java.HelloController printHelloWorld
INFO: HelloController : printHelloWorld : ENTER
Jul 19, 2014 11:16:29 AM com.example.Java.HelloController printHelloWorld
INFO: HelloController : printHelloWorld : EXIT
Jul 19, 2014 11:16:29 AM org.springframework.web.servlet.PageNotFound noHandlerFound
WARNING: No mapping found for HTTP request with URI [/SpringApp/WEB-INF/jsp/hello.jsp] in DispatcherServlet with name 'HelloWeb'

このため、TomcatでHTTPステータス404エラーが発生します。

全体のデータを以下に示します。

Web.xmlファイルは次のとおりです。

<display-name>Spring MVC Application</display-name>
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<servlet>
    <servlet-name>HelloWeb</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/HelloWeb-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>HelloWeb</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

HelloWeb-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:mvc="http://www.springframework.org/schema/mvc" 
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-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd 
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
<context:component-scan base-package="com.example.Java"></context:component-scan>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/"></property>
    <property name="suffix" value=".jsp"></property>
</bean>
<context:annotation-config/>
<mvc:annotation-driven/>
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"></bean>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"></bean>
</beans>

HelloController.Javaファイルは次のとおりです。

package com.example.Java;

import org.Apache.commons.logging.Log;
import org.Apache.commons.logging.LogFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
@RequestMapping("/hello")
public class HelloController {

    protected final Log logger = LogFactory.getLog(getClass());

    @RequestMapping(method=RequestMethod.GET)
    public String printHelloWorld(ModelMap model){
        logger.info("HelloController : printHelloWorld : ENTER");
        model.addAttribute("message", "Hello Sumit");
        logger.info("HelloController : printHelloWorld : EXIT");
        return "hello";
    }
}
5
Sumit

ここで私の答えを参照してください= https://www.youtube.com/watch?v=-AtPAeSWz-o

以下は私のために働いた。上記のYouTubeビデオからわかるように、私はすでにそれをテストし、それは動作します。

ディレクトリ構造:

ディレクトリ構造がこれと一致することを確認してください。

enter image description here

web.xml:

注意すべき点がいくつかあります。アプリが最初に起動したときに、localhost:8080/YourAppName/homePageではなくlocalhost:8080/YourAppName /に接続しようとするため、<url-pattern><url-pattern>/<url-pattern>である必要があります。

enter image description here

HelloController.Java:

enter image description here

HelloWeb-servlet.xml enter image description hereenter image description here

2
Gene

まず、ファイル名はHelloWeb-servlet.xml(servlet's '小文字)である必要があります。それでも問題が解決しない場合は、追加してみてください

<mvc:default-servlet-handler/>

helloWeb-servlet.xml内

6
Nickhil

アノテーションベースのアプローチでこの問題を解決するのにほぼ20時間を費やしています

このエラーは、DipatcherServletがコントローラークラスを見つけられなかったことを意味します

controllerクラスまたはアノテーションが@RestController/@ Controllerのクラスを、Configurationクラスまたはアノテーションが@ComponentScanのクラスの子パッケージに配置してください。

ex org.example.app ------>構成クラスorg.example.app.controller ------->コントローラークラス

3
uday kiran

同じエラーが発生していました。プロジェクト名とサーブレット名が異なるという間違いでした。サーブレット名をプロジェクト名に変更すると、このエラーが発生しなくなりました。

0
Rohit R