6

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

这是我的 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";
    }
 }

你好.jsp

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

谁能告诉我代码有什么问题?

4

3 回答 3

4

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

http://localhost:8080/HelloWeb/

它应该是:

http://localhost:8080/HelloWeb/hello

(把它放在你的网络浏览器中)

或者可以通过其他方式完成(如该教程中所建议的)

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

HelloWorldController类中,您可以更改:

@RequestMapping("/hello")

对此:

@RequestMapping("/")

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

希望能帮助到你!

于 2014-04-01T03:45:10.267 回答
1

您是否检查了 HelloController.class 是否在您的 [PROJECT_NAME]\target\classes\com\tutorialspoint\controller 文件夹中生成。如果不是,由于某些编译错误,您的 java 代码未编译。

请检查 HelloController.java 中使用的所有相应的 java 类。

于 2013-10-23T20:34:32.700 回答
0

您没有/HelloWorld/仅用于的映射/hello/

转到您的基本应用程序位置localhost:8080/myApp/,然后转到/hello您的 jsp 应该返回。那么你的战争文件名localhost:8080/myApp/hello在哪里myApp(假设它不是根)。

于 2013-06-21T10:11:09.627 回答