This question already has answers here:
Why does Spring MVC respond with a 404 and report “No mapping found for HTTP request with URI […] in DispatcherServlet”?

(9个答案)


3年前关闭。




我将项目部署在tomcat上,然后收到此错误“在名称为'HelloWeb'的DispatcherServlet中找不到URI [/ HelloWeb /]的HTTP请求的映射”。

这是我的Web XML文件
web.xml
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                  http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
 version="3.0"
 metadata-complete="true">

<display-name>Spring MVC Application</display-name>

 <servlet>
  <servlet-name>HelloWeb</servlet-name>
  <servlet-class>
     org.springframework.web.servlet.DispatcherServlet
  </servlet-class>
  <load-on-startup>1</load-on-startup>
</servlet>

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

</web-app>

我的 HelloWeb-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   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">

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

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

</beans>

我的控制器 HelloController.java
package com.tutorialspoint.controller;

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
public class HelloController {

    @RequestMapping(value = "/hello", method = RequestMethod.GET)
    public String printHello(ModelMap model) {
        model.addAttribute("message", "Hello Spring MVC Framework!");

       return "hello";
    }
 }

hello.jsp
<%@ page contentType="text/html; charset=UTF-8" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
  <h2>${message}</h2>
</body>
</html>

有人可以建议我代码有什么问题吗?

最佳答案

我相信您正在遵循tutorialspoint-HelloWorld for Spring MVC的教程。我有同样的问题,因为DispatcherServlet试图解决。

http://localhost:8080/HelloWeb/

它应该是:
http://localhost:8080/HelloWeb/hello

(将其放入您的网络浏览器中)

或者可以通过另一种方式完成(如该教程中所建议)

您应该注意,在给定的URL中,HelloWeb是应用程序
name和hello是我们在我们的虚拟文件夹中提到的
控制器使用@RequestMapping(“/ hello”)。您可以使用直接根
在使用@RequestMapping(“/”)映射URL时,在这种情况下,
可以使用短网址访问同一页面
http://localhost:8080/HelloWeb/,但建议使用其他
不同文件夹下的功能。

在HelloWorldController类中,您需要更改以下内容:
@RequestMapping("/hello")

对此:
@RequestMapping("/")

结果是您可以毫无问题地调用http://localhost:8080/HelloWeb/

希望能帮助到你!

07-27 23:33