Tagged Questions

5
votes
5answers
723 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. Wit …
2
votes
1answer
219 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 …
1
vote
1answer
36 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 instanc …
1
vote
1answer
85 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, anyb …
1
vote
1answer
491 views

Achieving seam hot deployment with Intellij-idea

How can I achieve hot deployment with Intellij-IDEA and Seam 2? I've set up a separate module to deploy hot deployable class files to WEB-INF/dev/, but it still deploys as one big …
0
votes
1answer
22 views

Why Servlet is unavailable after 3rd deployment in jboss 4.2.0

I am working in a struts-hibernate application. I have seen a error on 3rd time deployment of application in jboss4.2.0. When i deployed it for first time, it runs. Even in 2nd tim …
0
votes
1answer
36 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 modu …
0
votes
2answers
172 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 …