3

我讨厌不得不切换到导航器视图来查看构建的内容。例如,如果我想查看我的 *.properties 文件是否被移动,等等。

我尝试从包资源管理器的下拉菜单中删除所有过滤器...,但它仍然没有显示我的“目标”文件夹的内容。

我错过了什么吗?

我附上了我的 .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>
4

1 回答 1

0

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

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

您会看到相同的过程来查看.class由经典 java 构建生成的文件。

于 2018-07-25T16:06:03.657 回答