将 Maven Project 导入 Eclipse 并修复错误

2022-09-03 18:30:13

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

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

在方法内部,甚至到IOException,我正在得到<Class> cannot be resolved to a typeIOException 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

答案 1

您导入的项目是 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 并更新项目配置。

这应该可以解决它。


答案 2

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

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

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

如果问题仍然发生,请在“好”和“坏”项目中使用哪个JDK。我相信你会看到那里的不同之处。因此,请修复它。


推荐