Eclipse Tomcat 启动报错 45s

来源:互联网 发布:旺宝免费淘宝收藏软件 编辑:程序博客网 时间:2024/06/07 15:10

报的异常:

Server Tomcat v6.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.

Eclipse启动Tomcat时,默认配置的启动超时时长为45秒。假若项目启动超过45秒将会报错。

两种解决方法:
1、改XML
....\workspace\.metadata\.plugins\org.eclipse.wst.server.core\servers.xml
start-timeout="45" 

附正确的配置文件:

Eclipse Tomcat配置文件 
D:\working\.metadata\.plugins\org.eclipse.wst.server.core\servers.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<servers>
  <server auto-publish-setting="2" auto-publish-time="1" configuration-id="/Servers/Tomcat v7.0 Server at localhost-config" deployDir="wtpwebapps" hostname="localhost" id="Tomcat v7.0 Server at localhost" name="Tomcat v7.0 Server at localhost" runtime-id="Apache Tomcat v7.0" server-type="org.eclipse.jst.server.tomcat.70" server-type-id="org.eclipse.jst.server.tomcat.70" start-timeout="85" stop-timeout="20" testEnvironment="true" timestamp="1">
    <list key="modules" value0="web::org.eclipse.jst.jee.server:web::jst.web::2.5"/>
  </server>
</servers>

2、双击Servers视图中的对应的Server,打开Server的属性界面,右边有个Timeouts,把里面的45改大些





0 0
原创粉丝点击