且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Eclipse - 调试器不会在断点处停止

更新时间:2021-07-30 00:40:31

这可能与 JDK 6 Update 14,如 JDK 6 update 15 的发行说明中所示.

如果这确实是问题所在,则您应该迁移到更高版本的 JDK(但这并不能保证,因为 已针对 6u16、6u18 和 7b1 发布修复程序).***的办法是使用 -XX:+UseParallelGC 标志.增加最小和最大堆大小,延迟第一次GC,暂时缓解.

If this indeed turns out to be the issue, you should move to a higher version of the JDK (that's no guarantee though, since fixes have been released against 6u16, 6u18 and 7b1). The best bet is to use -XX:+UseParallelGC flag. Increasing the size of the minimum and maximum heap size, to delay the first GC, bring temporary relief.

顺便说一下,使用Eclipse中的这个bug报告来跟踪其他人的表现如何.

By the way, use this bug report in Eclipse to track how others have been faring.