Eclipse shows errors, but I can not find them

I am trying to start my project, but eclipse says that I have errors, but there are no errors of only the red cross, where is the name of the project. I tried uninstalling R.java and creating a new one, but that didn't work

Thanks in advance

+63
java android eclipse
Sep 28 '10 at 13:04 on
source share
11 answers

Based on the error you showed (there is no required Java project in "footballforum": "ApiDemos"), I would check your build path. Right-click the footballforum project and select Build Path> Customize Build Path . Make sure ApiDemos is on the project tab of the build path parameters.

+26
Sep 28 2018-10-10T00:
source share

Take a look at

Window → Show View → Problems 

or

 Window → Show ViewError Log 
+124
Sep 28 2018-10-18T00:
source share

This happens from time to time in Eclipse. The Project menu has a Clear option, which usually takes care of the problem.

+23
Sep 28 '10 at 13:07
source share

Go to project>clean and check the box that displays the error and click OK and it will clear your error. Click the tab that will automatically appear in the project menu. And if this also does not work than restarting the eclipse and try again, it will work.

+10
Aug 01 2018-12-12T00:
source share

For me, this happens to Maven and Eclipse / STS whenever I update my IDE or import an existing Maven project. Go to the "Problems" tab ( WindowShow viewProblems ) and see what is written there. Recently, the Problems tab showed Project configuration is not up-to-date ... and suggested using Maven to update my project configuration, and this solved the red X problem. To do this, in the "Project Explorer" view, open the context menu and select MavenUpdate Project , as shown in the following screenshot:

trigger the context menu and select Maven -> Update Project

+8
May 31 '16 at 14:32
source share

If you see an error in the problem panel, it will say: Description The type of path to the Pom.xml resource. The project configuration is not updated. Choose: Maven-> Refresh Project ... from the context menu of the project or use a quick fix.

Solution: right click on the project> select: Maven-> Update project

Mistake.

+3
Aug 28 '16 at 11:58
source share

Right click on Project -> Build Path -> Configure Build Path. Check if there is a Maven Dependencies in the list, if not, then update the maven project with Right-click Project → Maven → Update Project

+2
Feb 15 '19 at 13:15
source share

I had a red X on the folder, but not on the files inside it. The only thing that fixed this was to click and drag some files from the problem folder to another folder, and then run Maven -> Update Project . I could then drag the files back without returning the red X.

+1
Feb 18 '19 at 4:10
source share

Make sure you have a project | The line is automatically marked. I also ran into this issue and turned this to fix the problem.

0
Sep 28 '10 at 13:51 on
source share

I simply deleted all private libraries in JavaBuildPath and added banks again. He worked

0
Oct 28 '14 at 3:09
source share

I ran into the same problem while working on a selenium (Maven) project. The project folder and pom.xml showed the red cross symbol. This happened when I had an open test data table. I could remove the error by simply closing the data table, and never again encountered a problem

0
Oct 18 '18 at 15:52
source share



All Articles