The origin server did not find a current representation for the target resource(4种解决方案)

时间:2024-03-18 18:30:23

“The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.”,这个问题可真是遇到过好多次了。觉得很有必要整理出一篇博客出来。

方法1

先试试调整下,Project->Build Automatically,可能会恢复正常的。
因为在运行过多个程序的时候,刚开始觉得,是不是因为所有的代码都没有更新的缘故,后来经过测试,当有一个class文件运行错误后,第二次尽管把class文件改为正确,运行依然会出错,也就是说,这个文件并没有更新呢,然后把整个项目都build了一遍,这个时候就会更新啦,也就是在还没有进行build的时候,检查的还是之前的java文件,这就是为什么server莫名其妙报错的一个原因吧!

所以还是把 project >> build automatically 功能勾选上,让eclipse帮你自动构建吧!虽然每次构建整个项目会慢一些。
The origin server did not find a current representation for the target resource(4种解决方案)

方法2

在web开发中,有时候会为了配置某个库呀,改动了web.xml,当然啦要是改对了也不会出现这个问题了,如果真的一不小心把文件的部署路径写错了,也会导致这个问题,嗯如果是这种情况,就去查看console的报错信息吧,这个时候的报错信息可是很有用的。

方法3
移除Tomcat Server中的项目
servers->Remove,删除别的项目,如下图所示
The origin server did not find a current representation for the target resource(4种解决方案)

方法4
检查是否是XML版本出的问题
在Eclipse编译器中右键项目—>Properties—>Project Facets—>Dynamic Web Module 如图:
查看xml文件中version与Dynamic Web Module 是否对应。
The origin server did not find a current representation for the target resource(4种解决方案)
The origin server did not find a current representation for the target resource(4种解决方案)

这是目前发现的四种的解决方案吧,应该还有别的原因导致的,日后发现继续更新吧。希望对你能有帮助。