项目目录结构相关问题

时间:2011-07-21 14:23:45

标签: eclipse maven project directory-structure

我之前已经发过一个问题 Project Directory Structure Problem in Eclipse 但无法得到满意的答案。 所以再次用图像发布问题并使自己更清晰

enter image description here

我正在尝试在eclipse中导入maven项目..任何人都可以帮助

5 个答案:

答案 0 :(得分:4)

关于关于m2eclipse的Aarons评论:在签出项目时检查Checkout All Projects选项(从SVN Repositories视图使用checkout作为Maven Project):

enter image description here

enter image description here

只要您的根pom引用所有模块,就会非常简单。

答案 1 :(得分:3)

您必须在Java Build Path下的项目属性中设置正确的Java源路径。

enter image description here

答案 2 :(得分:2)

在Eclipse中打开Java透视图以获得正确的视图。如果我打开PyDev透视图,就会发生这种情况。

enter image description here

答案 3 :(得分:2)

您必须导入*impl作为Maven项目(即您必须单独导入每个模块)。 Eclipse不支持递归项目(bug)。

<强> [编辑]

当您告诉Eclipse“导入项目”时,请确保取消选择“复制到工作区”。这样,所有文件都只有一个地方。

答案 4 :(得分:2)

签出多模块项目后:

  1. 使用 File>Import>General>Existing Maven Projects 将每个项目导入工作区。所有模块应在工作区中显示为单独的顶级项目。

  2. 如果您的项目尚未配置源文件夹,请使用 {your project}>Properties/Java Build Path> Source

  3. 进行配置