Spring MVC 出现问题。。。。。。。。。

警告: No mapping found for HTTP request with URI [/zxgws/intro.html] in DispatcherServlet with name 'zxgws'
2015-5-21 9:56:40 org.springframework.web.servlet.DispatcherServlet noHandlerFound

出现了这个错误。。怎么解决,求大神解答。

图片说明
图片说明

1)UsersController类上是否有@Controller注解?
2)对应的请求方法的RequestMapping设置是否正确呢?
3)web.xml中的Spring Servlet的url pattern配置是否正确呢?示例代码:

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

参考问题:http://clarkht.iteye.com/blog/738820

@contoller注解的方法有错或者它返回的JSP页面有错
建议把JSP页面上的代码都注释掉,调用一个简单的@contoller返回它,跑跑程序

你在web.xml里配的路径对么?