gpt4 book ai didi

java - Eclipse Spring Maven 项目

转载 作者:行者123 更新时间:2023-12-02 00:15:46 25 4
gpt4 key购买 nike

我对 Eclipse 还算陌生。

所以我安装了最新的 Eclipse Juno、m2e 和 SpringIDE。

我无法理解如何使用上述软件组合创建 Maven Spring 项目。

Eclipse UI 给我的唯一选项是 Maven 项目或 Spring 项目: enter image description here

我知道在 Eclipse 中可以有一个 Maven/Spring 项目,而且我确实有一个:

enter image description here

但为了使其成为可能,我必须创建一个 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 项目添加性质吗?

谢谢

最佳答案

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

关于java - Eclipse Spring Maven 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11910641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com