The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)

**

服务器遇到意外情况,无法满足请求。

**
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第1张图片

出现这样的情况有很多:

1、Aciton配置问题
2、数据库后台没启动,数据库连接代码问题
3、tomcat配置问题

这些都会报这个错误。

但还有一种情况,是项目没完全导入,也会导致运行不了。

简单来说就是为什么你的项目到其他电脑上运行不了?


下面我以我的项目为例:

不知道大家是不是在实验室这样导入项目的,以前我也是这样导的,但是会出现一些错误提示,但是可以运行,我以为是eclipse版本的问题,没有在意,直到在实验室用myeclpies导入项目运行不了,问了大神才知道这样导其实是不太对的。
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第2张图片

完全导入的步骤(就像你自己重新写一个新项目一样):

新建一个空项目:
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第3张图片
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第4张图片

项目主要有两个部分,src文件夹和WebContent文件夹。如果你已经用第一种方式导入项目了,不能直接在软件里面复制包里面的东西,要在外面打开文件复制相关东西。

首先src下的东西复制进来。
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第5张图片

再把WebContent的文件和相关jar包复制进去。
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第6张图片
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第7张图片

效果图:
The server encountered an unexpected condition that prevented it from fulfilling the request.(解决思路)_第8张图片

感觉就像自己写的一样,这样硬件应该不会出错了,数据库后台故障这种情况很少,故障的话重装或者直接换数据库就可以了。

你可能感兴趣的:(项目导入)