包结构在eclipse中改变了

时间:2015-02-11 15:30:59

标签: eclipse maven configuration

我有一个完美的动态网络项目。然后我尝试使用mvn eclipse:eclipse -Dwtpversion=2.0命令将其更改为mvn web项目,然后更改了我的包结构。我的包中添加了main.java个包。我试图通过添加

来更改.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>

但项目包没有变化。 以下是我改变的项目结构。我怎样才能恢复正常(从包中删除main.java) 提前致谢

enter image description here

编辑:

当我尝试编辑源文件夹时,它显示以下错误: enter image description here

1 个答案:

答案 0 :(得分:1)

您必须在Java构建路径下更改项目配置中的源文件夹

enter image description here