I have a couple of projects actually being builded and deployed using ant. I’m migrating to MyEclipse to use hot deployment. The problem arises when i try to deploy the EJB3 beans since they have to be in a separated project to make a jar (it is required by EJB3 specifications)
The projects are:
– presbe (web project deploys in JBoss)
– feb (bunch of classes and beans all mixed)
– util (simple util classes)
The presbe project deploys to the JBoss and copies the classes in the feb and util projects.
Problems:
– How can i make the jar for the beans ? I can’t move them to a separated project because there are circular dependencies (its a very big project)
– If i use ant to make the jar, won’t i be loosing the MyEclipse hot deploy capability ?
How is this scenario usually addressed ?
Thanks!
Uber