OS: Windows XP
Eclipse 2.1.1
Eclipse freshly installed then MyEclipseIDE
No other external plugins installed
7 folders in /plugins like org.eclipse.pde
MyEclipseIDE 2.6.2
Sun j2sdk 1.4.2_01 for Eclipse and app server
Using Tomcat 5.0.9
I have a web application project in my workspace and several supporting projects which I JAR and move to the WEB-INF/lib directory of the web-app. These get deployed to the appserver and that all runs well.
However, when I debug the source shown for packages in the supporting projects is wrong. It seems that becuase the same class and package name appear in different projects in the workspace, sometimes the wrong one is picked up. So if I have the class com.radical.test.TestPage in both project_1 and project_2, and I had jarred project_2 into my web app, the debugger is picking up the source code from project_1 instead. I can step execution, but what is being executed doesn’t match the source lines that are displayed, so it’s really screwed up.