Reputation: 4049
i have a project in tomcat,and use startup
to set up it.
i want to import it into eclipse in order to debug it,and then i try to import project like this:
it displays no project found, maybe it does not have .project file
how could i import it correctly and conviently? there are only class in web-inf,so how could copy it?
Upvotes: 0
Views: 1575
Reputation: 11841
There is no direct way to do this, however... Perhaps, the simplest way to do this is the following:
If the project contains Java sources andyou have access to them add them (including the package structure) to the src folder.
Upvotes: 0
Reputation: 1555
Do the following:
And check Java Build Path in your project to be sure your Libraries correctly loaded.
Upvotes: 1