初学SpringMVC

web.xml:
<?xml version="1.0" encoding="UTF-8"?>

SpringTest


contextConfigLocation
/WEB-INF/spring-servlet.xml


org.springframework.web.context.ContextLoaderListener


spring
org.springframework.web.servlet.DispatcherServlet
1


spring
*.do


index.html

spring-servlet.xml:

<?xml version="1.0" encoding="UTF-8"?>
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
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.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

  <mvc:annotation-driven />

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

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

Constroller:

package com.spring.mvc;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class RestConstroller {

public RestConstroller() { }

 @RequestMapping(value = "/welcome", method = RequestMethod.GET)
 public String registPost() {

  return "welcome";

 }

}

报错:
2012-8-17 18:04:01 org.springframework.web.servlet.DispatcherServlet noHandlerFound
警告: No mapping found for HTTP request with URI [/SpringTest/welcome.do] in DispatcherServlet with name 'spring'

按教程上面写的,试过几次就是有问题

你的这个配置 没问题啊!

clean下服务器,重启试试,如果还是不行,把详细的log写出来、还有你的代码最好打个包发上来

把spring—servlet.xml改成SrpingTest-servlet.xml

你好。你下面这部分代码中:

[code="java"]
@RequestMapping(value = "/welcome", method = RequestMethod.GET)
public String registPost() {

return "welcome";

}
[/code]
将配置改成:value = "/welcome.do" 试试,一点愚见。