I have a client's large-ish e-commerce web app that I've been developing for several years in Eclipse 3.1. To say the least, I'm ready to move on to Helios.
The web app runs on Tomcat 5.5 in Java 5.0.
The advice I've encountered so far presumes I'm starting a Dynamic Web Project from scratch, or from a WAR file. The best I've been able to do so far is:
At this point I try to add my web project as a resource to the Tomcat server Eclipse says there are no resources to add/remove.
Any advice on what my next step is, or an altogether better method for importing old web apps into Helios would be much appreciated!
UPDATE:
I chose the "clean" option suggested below, here's how I did it:
src
" (later step) and "classes
" (not necessary) *; copy your selected files/folders to the WEB-INF
folder in the WebContent node of your Dynamic Web ProjectWEB-INF\src
to the "src
" folder under the Java Resources node of your Dynamic Web ProjectThanks for the help and the downright sane advice from all the answer-ers!
You have two options:
Although option #1 works fine in general, I recommend to proceed with option #2 as you get rid of all those artifacts not required any more. No question that it all depends of the complexity of your project and maybe your team size. Over the past years I've migrated a number of (more or less) complex applications from one eclipse IDE version to another. Creating a new, clean workspace and importing your sources from scratch does make sense - if there is a chance for cleanup make use of it :-)