Tagged Questions

8
votes
4answers
2k views

What makes hot deployment a “hard problem”?

At work, we've been having a problem with "PermGen out of memory" exceptions, with the team lead deciding it was a bug in the JVM - something related to hot-deployment of code. Without explaining many ...
5
votes
3answers
3k views

Incremental hot deployment on Tomcat with Maven and NetBeans

I'm using NetBeans 6.8, Tomcat 6, and Maven 2.2 and want to see changes in my code immediately in the browser (showing http://localhost:8080) after saving the file. The tomcat-maven-plugin has the ...
5
votes
1answer
981 views

Disable Hot Code Replace for the Eclipse Java debugger

When you change Java code while in a debugging session, Eclipse will upload the updated class files into the running JVM (hot code replace). This even works for remote applications. Is there a way to ...
3
votes
2answers
811 views

Can Jetty pick up changes to WEB-INF/lib on hot deployment? How?

I am running several webapps on Jetty 6 through Apache. They are set to hot deploy using .xml files in the contexts/ directory. Those .xml files simply define WebAppContext instances and tell them ...
3
votes
3answers
514 views

Does Google App Engine Java support Hot Deployment in Eclipse?

It doesn't seem to do this by default, which is pretty shocking to me given all the other stuff they've set up to make development easy. Is there a way to enable this? If not, anybody know why it ...
2
votes
4answers
2k views

Hot Deploy of development changes with Eclipse, Tomcat, and Jetspeed

I am developing a Jetspeed portal application running on Tomcat, using the Eclipse IDE with the Sysdeo Tomcat launcher plugin to enable debugging of the application running in Tomcat/Jetspeed. I was ...
1
vote
2answers
749 views

Hot deploy not longer working on JBoss (“Scheme change not implemented”)

I've got a pretty annoying problem with my JBoss AS 4.2.3 GA. Until recently everything was running fine, but now the hot deploy feature is now longer working. And -- as always -- I don't know what I ...
0
votes
1answer
54 views

Hot reloading old Ant-based Java webapp

I have a web app that runs on Ant and I use Tomcat or JBoss to test it locally in Eclipse (but I can use something else). Are there any good ways for me to hot re-load my application? I'm hoping to ...
0
votes
1answer
168 views

How do i upgrade a module in a running NetBeans Platform application from commandline or script?

How do i upgrade a module in a running NetBeans Platform from commandline or script? When developing NetBeans Platform Apps in NetBeans IDE it is possible to hot deploy/update modules in a running ...
0
votes
2answers
601 views

What limits “hot deploy”?

You can perform hot deploy when you have native Java code on Jetty. This allows you, for example, to make changes to your servlet code without requiring a restart of the server to see your ...