Tagged Questions
The hot-deploy tag has no wiki summary.
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 ...
6
votes
3answers
203 views
Redeploying Java EE applications immediately
I am quite new to Java EE and have been struggling with the slowness of the deployment process, and wonder if I'm doing something wrong. I am experienced with Django where the changes to code ...
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
810 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
511 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 ...
3
votes
1answer
2k 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 clump.
2
votes
0answers
136 views
How to do grace hot-deployment on Tomcat (non-stop)
Our production is running on LB+TOMCAT, We use our own custom made SAFE-DEPLOY tool to deploy the changes into the production.As our system is committed to provide 24/7 availability, the tool deploys ...
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
1answer
73 views
How to hot deploy scala+jee 6?
I am building a development environment for a JEE 6 application that i would like to build with scala and run with JBoss AS 7.
I was able to get everything running with maven, but not a IDE that can ...
1
vote
1answer
92 views
Having effect of java/jsp changes without restarting tomcat
How should I configure tomcat so that JSP/Java changes are in effect immediately without restarting the tomcat? When I redeploy the app after making some Java changes it restarts the tomcat ...
1
vote
2answers
748 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
0answers
12 views
about jetty hot deploy
when i changed css file it will not hot deploy,dose it means jetty only reload when java code changed?
is there some solution to solve this issue?
0
votes
1answer
53 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
2answers
99 views
jboss - tomcat deploy listener
I got a requirement to write a log line when all wars have been deployed.
Is there an observer pattern for Tomcat's deployer I could hook onto?
On first start jBoss/Tomcat send out a line with exact ...
0
votes
1answer
89 views
jboss war deployed listener
Is there a single listener one could implement to get a "war deployed" event?
I know there is the ContextServletListener.
But it has to be 'attached' for each component (several web.xml files).
As ...
0
votes
1answer
606 views
hot deployment of large codebase to weblogic 10.3
I have a very large code base whose build.xml consists of so many jar, some war files. One .class file may refer to more than one jar file. I manually compile the code and deploy the .ear file using ...
0
votes
1answer
97 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 time deployment, it ...
0
votes
1answer
166 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
600 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 ...