我对 Eclipse 有点陌生。
所以我安装了最新的 Eclipse Juno、m2e 和 SpringIDE。
我无法理解如何使用上述软件组合创建 Maven Spring 项目。
Eclipse UI 给我的唯一选项是 Maven 项目或 Spring 项目:
我知道在Eclipse中可以有一个 Maven/Spring 项目,我实际上有一个:
但为了使它成为可能,我必须创建一个 Spring 项目并手动编辑其 .project 文件以包含 Maven 特性和构建命令:
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
和 .project 文件以包含构建路径:
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
问题:
如何在不修改 .project 文件的情况下从 Eclipse UI 执行此操作?
有什么方法可以从 UI 向 Eclipse 项目添加性质?
谢谢