有没有办法让Eclipse Package Explorer显示输出目录内容?

时间:2016-12-08 00:11:53

标签: eclipse m2eclipse m2e package-explorer

我讨厌必须切换到Navigator视图才能看到构建的内容。例如,如果我想看看我的* .properties文件是否被移动等等

我尝试从Package Explorer的下拉菜单中删除所有过滤器...但它仍然没有显示我的“target”文件夹的内容。

我错过了什么吗?

我附上了我的.classpath

    <?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="src" output="target/classes" path="src/main/java">
        <attributes>
            <attribute name="optional" value="true"/>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
        <attributes>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="src" output="target/test-classes" path="src/test/java">
        <attributes>
            <attribute name="optional" value="true"/>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
        <attributes>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
        <attributes>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
        <attributes>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="output" path="target/classes"/>
</classpath>

1 个答案:

答案 0 :(得分:0)

据我所知,只有Project Explorer视图(不是 Package Explorer)可以显示输出文件夹。
在该(项目)视图中,您应该在视图的右上方看到一个向下的小箭头:

  • 选择选项Customize View
  • 在过滤器列表中取消选中“ Java输出文件夹”选项。

您将看到与经典Java构建所产生的see .class files相同的过程。