The origin server did not find a current representation for the target resource or is not willing to

在开发web项目的时候,在一切都部署完毕准备运行项目时,竟然出现了404错误,后来到网上查了大半天的资料也都没能解决这个问题,真的是整整折磨了我大半天的时间。

The origin server did not find a current representation for the target resource or is not willing to
后来停下来想一想,应该是controller层出现了问题,然后翻到spring-mvc.xml里面找原因,最后发现果然是这里面出了问题,原来是我在spring-mvc.xml文件里面没有添加扫描包的配置,就是这一段代码:**<context:component-scan base-package="sshProject" />**

The origin server did not find a current representation for the target resource or is not willing to
最后在spring-mvc.xml文件里面添加上这个扫描包配置,项目就可以正常运行了。

The origin server did not find a current representation for the target resource or is not willing to