Tomcat报错:The origin server did not find a current representation for the target resource...

错误信息:

“The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.”

解决方案(eclipse):

  1. 查看项目中是否存在两个web.xml文件
  2. 移除tomcat server中所有的项目,然后clean一下,双击打开Tomcat Server服务器,检查tomcat配置。
    1. 如果是新创建的server,默认的配置在Server Locations中是选中第一项的(User workspace metadata...),Deploy Path默认是wtpwebappsTomcat报错:The origin server did not find a current representation for the target resource..._第1张图片此时,要将其修改成下图所示

Tomcat报错:The origin server did not find a current representation for the target resource..._第2张图片

修改完成之后保存,重新编译项目,这时如果不出意外则可以正常运行了,如果依然报错!

3. 检查tomcat安装目录的webapps文件夹中是否存在与该项目相同的文件,比如该项目改过名称(project01—>project02)

这时webapps文件夹中依然存在project01目录,运行现在的项目时又会生成project02目录,然而这两个目录的内在(web.xml)是一样的!所以就会导致该错误,此时删除这些目录,重新运行tomcat server即可解决。

你可能感兴趣的:(Tomcat)