在 Eclipse 中禁用构建工作区进程
当构建工作区进程运行时 Eclipse 在做什么?我可以禁用它吗,因为它需要很长时间才能完成,而且我不知道是否有必要。谢谢
What is Eclipse doing when building workspace process is running? Can i disable it because it is taking a long time to complete and i dont know if it is necessary. Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
构建工作区是关于在当前使用的工作区中打开的项目之一中检测到的任何演变的增量构建。
您还可以通过菜单“
自动项目/构建
”禁用它。但我建议首先检查:
Preferences / Validations
,或Preferences / XML / ...
如果安装了 WTP)请注意 bug 329657(2011 年开放,2014 年进行中)是关于中断(太长的)构建,而不是取消它:
Building workspace is about incremental build of any evolution detected in one of the opened projects in the currently used workspace.
You can also disable it through the menu "
Project / Build automatically
".But I would recommend first to check:
Preferences / Validations
, orPreferences / XML / ...
if you have WTP installed)Note that bug 329657 (open in 2011, in progress in 2014) is about interrupting a (too lengthy) build, instead of cancelling it:
您可以切换到手动构建,以便控制何时完成。只需确保
Project >未选中主菜单中的自动构建
。You can switch to manual build so can control when this is done. Just make sure that
Project > Build Automatically
from the main menu is unchecked.如果需要通过 PDE 或 JDT 代码进行编程:
if needed programmatic from a PDE or JDT code:
对于遇到未选中自动构建但项目仍在构建的问题的任何人。确保您的项目没有部署到服务器选项卡中的服务器并被告知保持同步。
For anyone running into a problem where build automatically is unchecked but the project is still building. Make sure your project isn't deployed to the server in the server tab and told to stay synchronous.