Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在调试模式下启动我的 Tomcat,但它会引发以下错误:
本地主机上的服务器 Tomcat v7.0 服务器无法在 45 秒内启动。如果服务器需要更多时间,请尝试在服务器编辑器中增加超时
我什至尝试更新超时时间,但它仍然超时。但是,当我尝试启动 tomcat(在非调试模式下)时,它会正常启动。知道什么可能导致问题吗?
想通了原因。如果我们有太多的断点,调试模式会奇怪地花费太多时间来启动。禁用所有断点并以调试模式启动,启动时根据需要启用断点。
是不是在等你连接?
文档说要输入:
-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
但是如果你输入suspend=y,它会永远等待最终超时。