OpenJDK breaks on processWorkerExit with no breakpoint

后端 未结 2 593
生来不讨喜
生来不讨喜 2020-12-25 11:31

I\'m running tomcat 7.0.21 on OpenJDK

java version \"1.6.0_20\"
OpenJDK Runtime Environment (IcedTea6 1.9.9) (6b20-1.9.9-0ubuntu1~10.10.2)
OpenJDK 64-Bit Ser         


        
相关标签:
2条回答
  • 2020-12-25 12:18

    Spot on, still relevant in 2015 with latest Eclipse too. Make sure to keep the check-box under green highlight circle to be unchecked. I am adding image to highlight the change

    0 讨论(0)
  • 2020-12-25 12:26

    In debug mode in eclipse by default, break on uncaught exceptions is checked. Since you don't have a catch method here, it's likely that an uncaught exception is being thrown and the debugger is breaking for you immediately before the exception is thrown. You can turn it off in preferences under Java->Debug.

    0 讨论(0)
提交回复
热议问题