Hi,
We are using eclipse(ganymede)-maven2 with
JBOSS 4.2. I come from an environment where they build the ear and deploy everytime code changes which is time consuming for development.
Now we need mechanism to deploy code when I make changes in my
IDE without restarting the server. All our classes are currently behind WEB-INF in a war which sits inside an ear. If I make changes to
jsp and
java classes I should be able to see those changes with a page refresh on the browser without starting the server
1) Is this the same as hot-deploy and exploded format and can be accomplished ?
2) Can
Maven help me here with Maven JBOSS plugin goal like jboss:deploy-exploded-warfile
Are there any pre-reqs or other things reqd for this to work correctly ?
3) Tommorrow if we have some classes in ejb-jars and third-party java-libs how does the above set-up change
or there are limitations like class-loading issues due to different class-loaders.
4) How is cargo plugin different from 2 the pros and cons ?
I;am hard pressed on time and would appreciate some thing that works correctly.