将Maven项目导入Eclipse并修复错误

时间:2011-10-03 17:34:59

标签: java eclipse maven maven-3

我把一个项目导入了eclipse 我在每个类名中都有很多错误,甚至像String这样的类......

我所做的课程中的错误是Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor

并在方法<Class> cannot be resolved to a type内 甚至IOException我得到IOException cannot be resolved to a type

那我该怎么办? 我试着建造,再次无尘使用

更新:我也得到了说明

Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (execution: default-resources, phase: process-resources)   pom.xml /test line 6    Maven Project Build Lifecycle Mapping Problem

4 个答案:

答案 0 :(得分:18)

您导入的项目是Maven项目。你应该做的是打开位于项目根目录中的pom.xml文件,并在文件的插件管理部分添加以下插件:

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>org.apache.maven.plugins</groupId>
                                    <artifactId>maven-resources-plugin</artifactId>
                                    <versionRange>[2.0,)</versionRange>
                                    <goals>
                                        <goal>resources</goal>
                                        <goal>testResources</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <ignore />
                                </action>
                            </pluginExecution>
                        </pluginExecutions>
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

然后右键单击该项目,转到Maven并更新项目配置。

这应该解决它。

答案 1 :(得分:4)

我认为您的问题不在maven项目中,也不在导入过程中,而是在您的eclipse配置中。看来你的日食“看不到”正确的JDK。

因此,首先尝试创建简单的“hello world”项目,看看它是否有效。当这工作再次导入你的maven项目,即运行命令mvn eclipse:eclipse,然后使用eclipse打开项目。如果这是您的第一个eclipse项目,则必须创建M2_REPO变量,该变量将引用您的maven存储库(USER_HOME/.m2/repository

如果仍有问题,请尝试刷新并清理项目。

如果问题仍然存在,请比较您在“好”和“坏”项目中使用的JDK。我相信你会看到那里的不同。所以,解决它。

答案 2 :(得分:3)

您是否能够成功构建项目.. 如果是这样,请不要导入..运行@project root level;

#mvn eclipse:eclipse -o  

这将创建一个eclipse项目。然后'导入为现有项目。'所有类路径问题都将得到解决。但是您需要将.m2 home设置为构建路径中的变量..

答案 3 :(得分:3)

转到Project - &gt; Properties - &gt; Java build path - &gt; Libraries。是否添加了JRE系统库?它指向正确的位置吗?

还尝试在项目的根文件夹上运行mvn eclipse:eclipse(您需要先下载maven并将其添加到类路径中。)