解决Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds.问题

今天做个web项目的时候遇见一个问题,tomcat服务器提示了一个错误:

Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor.

我在有道词典翻译了下,意思:

在本地主机上的服务器Tomcat v7.0服务器无法在45秒内启动。如果服务器需要更多的时间,请尝试在服务器编辑器中增加超时。


那么发生这种错误情况有两个,要么是你的数据库连接connection超时,要么是你的项目真的在45s之间还没启动起来,是由于项目比较大的缘故。

而博主我的情况是数据库连接超时了(数据库服务没打开).

所以有朋友下次遇到这种问题,请先确认一下数据库是否打开;还有另外一种情况是调整下eclipse的这个45s的时间,修改workspace\.metadata\.plugins\org.eclipse.wst.server.core\servers.xml文件。
将里面的45s修改成245s,这样,一定要记住,重启eclipse啊。

你可能感兴趣的:(JavaEE)