如何在 Eclipse 中更改启动文件的调试器设置
他的,
我一直试图找出为什么从 Eclipse 中使用调试器启动 DevMode 如此缓慢,并在我的机器上的进程列表中注意到以下行:
/usr/lib/jvm/jdk1.6.0_14/bin/java -agentlib :jdwp=transport=dt_socket,suspend=y,address=localhost:47248 ...
显然,应用程序已暂停,等待调试器连接,这大约需要 2 分钟。我想设置“挂起= n”。有谁知道我可以在哪里设置这个指令。 Eclipse 启动配置中的 vm 部分是空的,如果我粘贴更新的调试器配置,则会出现错误,提示值输入了两次。
据我了解,当我在调试器模式下运行启动配置时,Eclipse 从某处获取此配置并自动插入它。
谢谢
His,
I have been trying to find out why starting DevMode with Debugger from Eclipse was so slow and noticed in the list of processes on my machine the following line:
/usr/lib/jvm/jdk1.6.0_14/bin/java -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:47248 ...
Apparently the application is suspended to wait until the debugger is connected which takes about 2 minutes. I would like to set "suspend=n". Does anyone know where I could set this directive. The vm section in Eclipse launch configuration is empty and if I paste the updated debugger config there is a error telling that the values are entered twice.
As I understand it, Eclipse takes this config from somewhere and inserts it automatically when I run launch configurations in debugger mode.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法删除该参数,即使可以,也不会产生任何影响。当您将新浏览器连接到 GWT OOPHM 实例时,它必须编译整个项目以在开发模式下使用。这需要时间,而不是等待调试器附加。
You can't remove that parameter and, if you could, it wouldn't make a difference. When you connect a new browser to the GWT OOPHM instance it has to compile the entire project for use in development mode. This is what takes time, not waiting for the debugger to attach.