Spring Maven DispatcherServlet noHandlerFound

时间:2015-02-13 15:11:31

标签: java spring jsp maven spring-mvc

我是java世界的新手。我正在按照一个教程学习java。 本教程使用Spring框架和maven构建。 但是当我到达使用DispatcherServlet的部分时,我的工作并没有像它想象的那样工作。 它在控制台上显示:

org.springframework.web.servlet.PageNotFound noHandlerFound 

WARNING: No mapping found for HTTP request with URI [/index.html] in DispatcherServlet with name 'dispatcher'

并且浏览器无法加载简单的hello world字符串。浏览器说

HTTP ERROR 404
Problem accessing /index.xml. Reason:
Not Found
Powered by Jetty://

这似乎是一个常见的问题,因为有很多关于此的讨论。 我已经阅读了其中几个并尝试了一些答案,但没有任何帮助。任何人都可以检查我的代码并指出可能导致此问题的原因吗?

的web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>TestApplication</display-name>
<welcome-file-list>
  <welcome-file>index.html</welcome-file>
  <welcome-file>index.htm</welcome-file>
  <welcome-file>index.jsp</welcome-file>
  <welcome-file>default.html</welcome-file>
  <welcome-file>default.htm</welcome-file>
  <welcome-file>default.jsp</welcome-file>
</welcome-file-list>
 <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>*.html</url-pattern>
    <url-pattern>*.htm</url-pattern>
    <url-pattern>*.json</url-pattern>
    <url-pattern>*.xml</url-pattern>
</servlet-mapping>
</web-app>

dispacher-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: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-4.0.xsd">

<context:component-scan base-package="my.testApplication.controller" />
</beans>

IndexController.java

package my.testApplication.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.portlet.bind.annotation.RenderMapping;

@Controller
public class IndexController {

  @RequestMapping("/index")
  public String index(){
    return "WEB-INF/jsp/index.jsp";
  }
}

的index.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

hello from spring web mvc
</body>
</html>

附加评论(解决方案):这是正确的参考,我犯了一些错误,然后即使使用正确的代码它也没有工作。当这种情况(错误和回到正确的代码 - 仍然无法正常工作),然后需要执行&#39;项目 - 清洁&#39;跑之前。 (也许是基础知识。)这样就解决了。谢谢。

1 个答案:

答案 0 :(得分:1)

应该是@RequestMapping注释。

@RequestMapping(value="/index")
  public String index(){
    return "WEB-INF/jsp/index.jsp";
  }