0

我对 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 项目添加性质?

谢谢

4

2 回答 2

2

尝试在项目资源管理器中右键单击项目 -> 配置 -> 转换为 maven 项目

于 2012-08-11T00:14:59.150 回答
1

添加春季项目性质

此选项可用,例如在使用SpringSource Toolssuite时

于 2012-08-11T00:23:51.800 回答