I'm moving from myeclipse back to eclipse, It look like the hot deployment for jboss is not working in eclipse, every time i change the source code (even add a space) eclipse ask me to restart the server. I'm using jboss 4.2.2GA and eclipse 3.4.2. I was using myeclipse 6.5 and the hot deployment is working fine. Thanks,
depends on your plugin bah I don't remember the exact plugin names... Some plugin will build the war file for each hot deploy, which sucks. It's slow and the server easily runs out of memory after several hot deploys One plugin will just deploy the changed java/jsp/property files, normally you dont need to restart the server
【在 m****i 的大作中提到】 : I'm moving from myeclipse back to eclipse, It look like the hot : deployment for jboss is not working in eclipse, every time i change the : source code (even add a space) eclipse ask me to restart the server. I'm : using jboss 4.2.2GA and eclipse 3.4.2. I was using myeclipse 6.5 and the : hot deployment is working fine. : Thanks,
I use the "run jetty run" plugin, which doesn't require a complete rebuild. There's a commercial JavaRebel JVM plugin that needs no restart in most situations. The java hot deployment is weak, you can make changes inside method without restart, that's it. With JavaRebel you can add class, function, etc., it supports spring as well, so everything is hot, and state is kept between your changes.
【在 h**d 的大作中提到】 : depends on your plugin bah : I don't remember the exact plugin names... : Some plugin will build the war file for each hot deploy, which sucks. It's : slow and the server easily runs out of memory after several hot deploys : One plugin will just deploy the changed java/jsp/property files, normally : you dont need to restart the server