Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a Java EE application that I deploy over and over again on a local JBoss installation during development. I want to speed up the build by hot deploying my application straight into [JBOSS]/server/default/deploy/myApp

It seems to work - but there also seems to be a somewhat arbitrary delay between the hard deploy and when JBoss starts using the new classes. I am not very familiar with JBoss, but I assume it caches classes, and that this is what causes the problem.

Am I correct, and if so, how do I make JBoss flush it's cache?

share|improve this question
The answer of Yan Pak is perfect. Why don't you accept it? – Pedro Morte Rolo May 8 at 10:46

5 Answers

Unfortunately, it's not that easy. There are more complicated things behind the scenes in JBoss (most of them ClassLoader related) that will prevent you from HOT-DEPLOYING your application.

For example, you are not going to be able to HOT-DEPLOY if some of your classes signatures change.

So far, using MyEclipse IDE (a paid distribution of Eclipse) is the only thing I found that does hot deploying quite successfully. Not 100% accuracy though. But certainly better than JBoss Tools, Netbeans or any other Eclipse based solution.

I've been looking for free tools to accomplish what you've just described by asking people in StackOverflow if you want to take a look.

share|improve this answer
Sorry, got the "hard deploy" from the maven goal for doing that. This confuses me though, as the documentation I find tells me it is just that easy (redhat.com/docs/manuals/jboss/jboss-eap-4.2/doc/Getting_Started/… for example). I can see how it would be a problem with EJB-related stuff that might have more intricate connections though.. – Jacob Hansson Jun 9 '09 at 12:20
1  
HOT-DEPLOY, as far as I understand, is the ability to change ON-THE-FLY what's currently deployed without redeploying it. I guess RedHat documentation call HOT-DEPLOY to the ability of deploy anything without RESTARTING the application server. Maybe I am wrong. Do you use Eclipse? Give MyEclipse a try. There is a 30-day trial and it's pretty cheap if you decide to go for it. – Pablo Santa Cruz Jun 9 '09 at 12:39
2  
it's a feature of the app server, has nothing related to the IDE. – lwpro2 Dec 21 '11 at 3:02

I had the same problem in my bundle: (Eclipse IDE + JBoss server adapter) + JBoos AS 7.0.1 (community project).

My solution is very simple - you should go to JBoss administrative panel (by default localhost:9990), there in profile settings open Core - Deployment Scanners. Turn on Autodeploy-Exploded (set to true), and by your wishes you can set scanner time (by default 5000 ms) to appropriate for your (I set to 2000, for more fast incremental publish in Eclipse when I make changes to projects). That it. Now JBoss make HOT deploy not only for HTMLs (JSF, XHTML and so on) files but takes care on POJO classes (beans and so on) files.

share|improve this answer
1  
Wondeful ! works like a charm and it tooked me only 3 minutes, after adding a user with $catalina_home/bin/add-user.sh – Nicolas Zozol Mar 29 at 21:08
Wonderfull! I do not get why isn't this the one with more votes! – Pedro Morte Rolo May 8 at 10:44
@PedroMorteRolo check votes now ;) – mostafa.S May 12 at 8:09

Use Ant script and make target deploy.

The deploy target should:

  1. Stop JBoss
  2. Copy the ear or war to the deploy directory
  3. Start JBoss

==> No caching + also no out of memory issues after subsequent deploys during testing.

share|improve this answer

You should try JRebel, which does the hot deploy stuff pretty well. A bit expensive, but worth the money. They have a trial version.

share|improve this answer

I have had the same problem, but think I've got it under control now.

Are you using eclipse or command line or ??

When I use the command line, I think I did "seam clean" or "seam undeploy" or maybe even "seam restart" followed by "seam explode". I probably tried all of these at one time or another never bothering to look up what each one does.

The idea is to remove the deployed war file from TWO places

1. $JBOSS_HOME/server/default/deploy
2. $PROJECT_HOME/exploded_archives

I'm pretty sure "seam undeploy" removes the 1st and "seam clean" removes the 2nd.

When I use eclipse (I use the free one), I first turn off "Project/Build Automatically" Then when I am ready to deploy I do either Project/Build Project or Project/Build All depending on what I've changed. When I change xhtml, Build Project is sufficient. When I change java source Build All works. It's possible these do the same things and the difference is in my imagination, but some combination of this stuff will work for you.

You have to watch the output though. Occasionally the app does not get cleaned or undeployed. This would result in not seeing your change. Sometimes I shut down the server first and then rebuild/clean/deploy the project.

Hope this helps.

TDR

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.