使用 eclipse 和 maven 插件的推荐系统要求是什么?
我想知道使用 eclipse 和 m2eclipse 插件的推荐系统要求是什么。我目前使用的是 E8400 和 4Gb 内存。几乎每次我更改 pom.xml 中的某些内容时,Eclipse IDE 都会在完成之前挂起一段时间(大约 1-3 分钟)。正常吗?
I am wondering what is the recommended system requirement for using eclipse and m2eclipse plugin. I am using E8400 and 4Gb ram currently. Nearly every time I changed something in the pom.xml the eclipse IDE would hang for a while (about 1-3 minutes) before it finished. Is it normal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,这是不正常的。
我在一台具有 4GB RAM 的笔记本电脑上进行所有开发,并且能够运行 Eclipse + M2Eclipse + Tomcat + Flex/Flash + MySQL 等。我不断更改我的 POM(一个项目中有 8 个),通常不需要超过几秒钟。
也就是说,根据依赖关系树的大小,可能需要一段时间才能将所有依赖关系下载到本地计算机。您可以通过在 Eclipse 中打开控制台视图并选择其中的 Maven 控制台来了解正在发生的情况。检查一下并报告回来,也许会有其他问题的线索。
Generally speaking, it is not normal.
I do all my development on a laptop with 4GB of RAM and I am able to run Eclipse + M2Eclipse + Tomcat + Flex/Flash + MySQL, etc. I change my POMs (8 of them in one project) constantly and it usually never takes more than a few seconds.
That said, depending on the size of your dependency tree it can take a while to download all the dependencies to your local machine. You can find out what is happening by opening the console view in Eclipse and selecting the Maven console within it. Check it out and report back, perhaps there will be a clue as to some other problem.