Reputation: 6546
I have one java web project in eclipse EE and it has error label hint, but I check the project build path and all folders in projects.There is no any issues.
What's more, I tried : clean the project and build again, but it still hint error label.
So how to found the root cause and solve the question?
Upvotes: 0
Views: 253
Reputation: 94429
Press CTRL+3 then type markers
, find the problem in the markers list and see if there is a Quick Fix
.
Upvotes: 0
Reputation: 40315
Eclipse does this sometimes, I don't know why. First, check if there's an error being reported; perhaps you missed it. Check in the Problems tab (Window -> Show View -> Problems if it's not visible).
If you truly have no issues left, try refreshing (right-click on project -> Refresh) then cleaning the project (Project -> Clean...).
If that doesn't work, close all editor windows, then close and reopen the project (right-click on project -> Close Project). You might have to restart Eclipse.
Upvotes: 1