如何修复 Zend Studio 中构建工作区错误?
如何解决 Zend Studio 中构建工作空间的问题?
我正在尝试重命名项目并重命名项目文件夹,但是什么也没有:
构建期间发生错误。 运行构建器'JavaScript时出错 项目“PROJECT”的验证者。 java.lang.NullPointerException
How to fix building workspace problem in Zend Studio?
I'm trying to rename project and rename folder of project, however nothing:
Errors occurred during the build.
Errors running builder 'JavaScript
Validator' on project 'PROJECT'.
java.lang.NullPointerException
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须转到“项目”->“属性”->“构建器”,然后禁用“Javascript 验证器”。
you must go to Project->Properties->Builders then disable ‘Javascript Validator’.
该错误已修复,您可以等待新版本或应用补丁:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=318004
The bug has been fixed, you can either wait for the new release or apply the patch :
https://bugs.eclipse.org/bugs/show_bug.cgi?id=318004
我遇到了类似的问题,我的问题是保存工作区进程尝试写入其中一个文件,但它甚至无法在 .metadata 目录下使用。
这就是我所做的:
打开 .metadata 目录并查找该特定文件,您的文件可能不同,所以
将其更改为对该文件进行读写,然后重新启动 eclipse。
它解决了问题!
我的操作系统:Ubuntu 10.04,Eclipse SDK 3.5.2
希望这有帮助...
I had similar problem and mine is that the saving workspace process try to write in one of the file and it can't even it is available under .metadata directory.
This is how I did:
Open the .metadata directory and look for that particular file, yours can be different, so
change it to read and write for this file then restart eclipse.
It fixed the problem!.
My OS: Ubuntu 10.04 , Eclipse SDK 3.5.2
Hope this help...