Hi all
Here’s my problem. I’m developing my project’s web app (WAR); someone else is developing the EJBs/DB. I’m using MyEclipse. He’s using jEdit + Ant.
We’re deploying to JBoss 3.2.3 and Tomcat 4. Up to now I’ve been able to place my exploded WAR in the JBoss deploy directory along with all my colleague’s EJBs, pojos, Hibernate DB, etc. But because of Dependency Hell we’ve had to change to deploying the whole app as an EAR. It’s the only way we can seem to get the ever-growing app to deploy cleanly.
So I want to put my exploded WAR inside our exploded EAR inside JBoss’ <server_name>/deploy directory, like this:
<server_name>/deploy/myapp.ear/myapp.war
But MyEclipse’s JBoss settings don’t seem to allow me to specify where on the disk I want to put my exploded WAR. It assumes that I’m going to put in in <server-name>/deploy, like this:
<server_name>/deploy/myapp.war
Is there any help for me? Any work-arounds (that don’t involve me having to keep my wits around me every waking hour)? 😕
TIA.
—
Sean