Have started work on a large/old J2EE project with a non-standard directory structure.
Is there a way for me start developing/deploying using MyEclipse?
In a simplified way, the project directory structure is as follows :
theproj/
theproj/src/
theproj/src/META-INF
theproj/web/
theproj/web/jspfolder1
theproj/web/jspfolder2
theproj/web/WEB-INF
theproj/application.xml
webapp2/
webapp3/
So this directory structure contains:
1. One web application under the theproj/web/ folder. The web application has no java source code, contains only JSPs. It uses EJBs in the jsp pages.
2. theproj/src/contains several EJBs and the theproj/src/META-INF contains the ejb-jar.xml etc. All EJBs are bundled in a jar file.
3. The application.xml for the EAR is also right there under ‘theproj’ folder.
4. The webapp2 and webapp3 are in standard form and part of the overall EAR file that uses this application.xml and use the EJBs mentioned previously.
Can someone help me with using MyEclipse to work with this directory structure?