I have all the
java source codes, if I run
ant to pack them into a .WAR or .EAR file and deploy to an application server like Weblogic, then can I use eclipse to debug it (assume I start my weblogic through eclipse) ?
I heard that if I want to debug a
j2ee app, I have to deploy it in a way that the .class are in an expanded way, i.e. I can't just deploy a single .ear or .war and have to deploy the classes in a unpacked way, then in eclipse I link the output to that deployment location (WEB-INF/classes/..).
Is this true ?