spring mvc page not found no mapping found for http request with uri

我这里的报错实际情况是:

14:02:15,736 WARN  [PageNotFound] No mapping found for HTTP request with URI [/spring3MVC/abc/index.do] in DispatcherServlet with name 'spring3MVC'

其中,[spring3MVC/abc/index.do]是我请求的路径,就我现在的项目,我的请求路径是:

http://localhost:8080/spring3MVC/abc/index.do


spring3MVC是我的项目名,abc是action的注解用的,index是方法的注解

@Controller
@RequestMapping("/abc")
public class ZhujieRequestController  {

    protected final transient Log log = LogFactory.getLog(ZhujieRequestController.class);

    @RequestMapping("/index")
    public String index() {
        return "hello";
    }

}

其它的配置文件,比如web.xml和一些jdbc连接的我就不说了,就说核心xml文件:spring3MVC-servlet.xml



	





	
	

	
	

	
	
		
		
		
		
	

	
	

	
	
		
		
		
	


	
	
	
基本配置就是这样,服务重启了好多变,总是不行,后来,我把
的value改为true,就正常了。 哎,我也是刚学,碰到这个问题。   还好运气好,搞定了

你可能感兴趣的:(spring)