包结构在eclipse中发生了变化
package structure is changed in eclipse
我有一个运行良好的动态 Web 项目。然后我尝试使用 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)
提前致谢
编辑:
当我尝试编辑源文件夹时,它显示以下错误:
您必须在 Java 构建路径
下的项目配置中更改源文件夹
我有一个运行良好的动态 Web 项目。然后我尝试使用 mvn eclipse:eclipse -Dwtpversion=2.0
命令将它更改为 mvn web 项目,然后我的包结构被更改。 main.java
个包已添加到我的包中。我试图通过添加
<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) 提前致谢
编辑:
当我尝试编辑源文件夹时,它显示以下错误:
您必须在 Java 构建路径
下的项目配置中更改源文件夹