如何保持 Java 项目在 IDE 之间的互操作性
我尝试在 Eclipse、Galileo 中导入现有的 MyEclipse 项目。一切都很好,除了我无法在 Eclipse 中使用 Tomcat6 插件部署项目。我猜这是因为MyEclipse项目的具体配置。
有没有办法解决这个问题?保持项目在 Eclipse、MyEclipse 和 Intellij-Idea 等不同 IDE 之间互操作的最佳实践是什么?
I tried to import an existing MyEclipse project in Eclipse, Galileo. Everything is fine except that I am not able to deploy the project with Tomcat6 plugin in Eclipse. I guess this is because the MyEclipse specific configuration of the project.
Is there a way to workaround for this? What is the best practice to keep your project inter-operable between different IDE's like Eclipse, MyEclipse and Intellij-Idea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Maven 是必经之路。所有流行的 Java IDE 都对 Maven 项目提供良好的支持。另一方面,Maven 有为这些 IDE 创建项目文件的插件
Maven is the way to go. All popular Java IDEs have good support for Maven projects. Maven on the other side have plugins which create project files for those IDEs
每个 IDE 都有不同的方法来处理诸如通过插件进行部署之类的事情,因此您最好通过 ant 或 maven 进行部署,这些可以从 IDE 调用。
Each IDE has a different approach to things like deployment by plugins, so you might be better off doing your deploy through ant or maven, which can be called from the IDE.