sping mvc No mapping found for HTTP request with URI [/dms/mesjkt01.do]

有三种情情会出现这个无法找到HTTP。

1 XML方式

  

其中的“name="hello.do"“ 配置有问题,改成“name="/hello.do" ”就OK了。
2注解方式 这个在Action中(spring2.5)
@RequestMapping("article.do")
改成:@RequestMapping("/article.do")
3注解扫描方式错误

            exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
        


改成:

            include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
        

注意:包的位置

你可能感兴趣的:(sping mvc No mapping found for HTTP request with URI [/dms/mesjkt01.do])