一、超出启动时间
1、Tomcat 默认启动时间是45秒,超时后,会报错启动超时:Server tomcat7_999 at localhost was unable to start within 11 seconds. If the server requires more time, try increasing the timeout in the server editor.
2、原因分析:可能是项目太大,需要加载的资源太多,没有在45s内完成启动。
(还有一种:检查数据库连接是否正常,直接用Navicat等工具连接数据库试试)
3、解决办法:调整Tomcat启动时间。
4、Eclipse/MyEclipse中,双击Tomcat --- Timeouts 选项 ---- 如下:
二、Debug模式无法启动
1、Tomcat正常模式启动没问题,Debug模式启动超时
2、原因分析:可能是项目某处debug断点,影响了tomcat后续的启动
3、解决办法:Eclipse 切换到debug 视图 --- 移除所有断点
如果您还遇到其他种情况,欢迎留言,谢谢。