Tomcat在RUN模式下启动但在调试模式下它会永远挂起会有什么问题?

时间:2013-05-15 15:44:08

标签: eclipse spring tomcat

我正在使用STS(eclipse)并面临Tomcat的一个奇怪问题。它运行良好,突然间它开始出现问题。首先它响应非常缓慢,并且在调试模式下它根本没有响应。虽然它在RUN模式下启动时运行正常,但在调试时它会在 -

之后等待
May 15, 2013 9:03:51 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
May 15, 2013 9:03:51 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.32
May 15, 2013 9:03:53 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext

服务器永远停滞不前,好像是在某处左右要求某些东西。我做了很多事情 - 删除服务器并重新设置整个东西,采用了不同的Tomcat。我没有确定任何设置。

2 个答案:

答案 0 :(得分:10)

确保您没有设置任何断点,这可能会导致服务器在启动期间暂停。

答案 1 :(得分:3)

检查方法声明中是否有任何断点

public void myMethod( ParamType myParameter ){ //breakpoint in this line
...
}

您会在Debug透视图中的断点视图中看到断点标记为[entry],而不是[line:XX],因为显示了实现中的断点。

禁用该断点并尝试在Debug中启动服务器。这对我有用,希望这有助于某人。