eclipse在debug模式下总是自动进入到ThreadPoolExecutor类中

eclipse在debug模式下总是自动进入到ThreadPoolExecutor类中

  当我们将web项目发布到tomcat服务器中,并且以debug模式启动的时候,总是自动跳转到 ThreadPoolExecutor 类中,如下:

  eclipse在debug模式下总是自动进入到ThreadPoolExecutor类中

 

解决办法 

在eclipse中点击Window->Preference->Java->Debug
将“Suspend execution on uncaught exceptions”的勾去掉即可

 如下图:

 eclipse在debug模式下总是自动进入到ThreadPoolExecutor类中

 

上一篇:【Java多线程】线程池-ThreadPoolExecutor


下一篇:为什么阿里巴巴禁止使用 Executors 创建线程池,而是通过 ThreadPoolExecutor 方式?...