I am evaluating MyEclipse in order to be able to debug J2EE applications running on an application server (Oracle 9iAS).
I have got an existing application with a following source directory structure:
<pre>
|– src
| |– java
| | `– com
| | `– mycompany
| | |– myapp
| | | |– ejb
| | | |– util
| | | `– web
</pre>
As you can see, java source is put under three different packages: com.mycompany.myapp.ejb, com.mycompany.myapp.util, com.mycompany.myapp.web. Ant scripts are used to build the following libraries
<pre>
|– lib
| |– myapp-ejb.jar
| |– myapp-util.jar
| |– myapp-web.war
</pre>
and the myapp.ear is built from those.
What should I do to be able to debug the application with MyEclipse and Oracle 9iAS?
I tried to create an enterprise application project with an ejb module and a web module. I copied the sources from com.mycompany.myapp.ejb to the ejb module and the sources from com.mycompany.myapp.web to the web module. Where should I put the util sources? They are part of the application and both ejb and web modules are using them.
Regards,
Sami