Questions tagged [hotdeploy]

Deployment of an application to a server without the need of restarting the server for changes made in the code base to take effect.

Hot deployment makes it possible to deploy an application to a server without the need of restarting the server for changes made in the code base to take effect.

166 questions
6
votes
1 answer

Disable Hot Code Replace for the Eclipse Java debugger

Possible Duplicate: How do I disable Hot Code Replace in Eclipse 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…
Thilo
  • 257,207
  • 101
  • 511
  • 656
5
votes
5 answers

Java - Hot deployment

Recently, I was reading book about Erlang which has hot deployment feature. The deployment can be done without bringing the system down. All the existing requests will be handled by old version of code and all the new request after deployment will…
Siva Arunachalam
  • 7,582
  • 15
  • 79
  • 132
4
votes
5 answers

How can i hot-deploy my Java project?

I work in a team of Java developers. We write the code in Eclipse, and then we use maven to build the war. Afterwards we deploy the war in Tomcat. Is there a free way to autodeploy files on save ? Thanks.
user1271955
  • 41
  • 1
  • 2
4
votes
1 answer

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 the changes as follows Total servers used for a…
Neo
  • 123
  • 1
  • 9
4
votes
2 answers

Hot deployment using mod_wsgi,python and django on Apache

I have setup an Apache server with mod_wsgi, python_sql, mysql and django. Everything works fine, except the fact that if I make some code changes, they do not reflect immidiately, though I thing that everything is compiled on the fly when it comes…
Neeraj
  • 8,408
  • 8
  • 41
  • 69
4
votes
0 answers

VM Capabilities, what kind of VM can support these two kind of hot code replace: "Method addition" and "Arbitrary class redefinition"?

In Eclipse debug view, right click to show the context menu, open the properties dialog, click the second tab "VM Capabilities", which says "this page displays optional debug capabilities that may be supported by the selected VM". In "Hot Code…
Leo Lee
  • 468
  • 5
  • 16
4
votes
2 answers

Pitfals of deploying/redploying app to Tomcat without restarting

I have read that it is possible with Tomcat 5.5+ to deploy a war to a Tomcat server without a restart. That sounds fantastic but I guess I am too skeptical about this functionality and it's reliability. My previous experience (with Websphere) was…
shaune
  • 2,510
  • 1
  • 31
  • 36
4
votes
1 answer

How to deploy new flows in Mule without restarting it?

When we change the Mule Deployment Descriptor (mule-deploy.properties file) to add more flow configuration files, is it must to restart Mule for the new flows to start running? Is there any way we can deploy the new flows without restarting Mule or…
Pranav Pal
  • 275
  • 6
  • 18
4
votes
2 answers

Hot deploy with maven overlay

So I'm trying to get hot deploy to work on my maven project using netbeans. I have two war packages. One I call "web" and the other I call "custom-web". I overlay (with the maven overlay plugin) "custom-web" on top of "web". I have several…
Hoffmann
  • 14,369
  • 16
  • 76
  • 91
3
votes
2 answers

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.
Daan van Yperen
  • 674
  • 6
  • 26
3
votes
2 answers

Tomcat hot deployment fails

I'd like to do hot deployment in tomcat, but fails. I use maven tomcat plugin to to deployment. When I invoke "mvn tomcat:redeploy", the war is uploaded to tomcat webapps folder successfully. But it is not unpacked successfully, because the my…
zjffdu
  • 25,496
  • 45
  • 109
  • 159
3
votes
0 answers

Netbeans 8.2 + wildfly 11 hot deploy not working

I am using Netbeans 8.2 for maven java web application. I am using Wildfly 11.0.0 application server for running the project. When i change & save the .jsp file, the netbeans deploying and i can see the changes in the web page while…
Pamba
  • 776
  • 1
  • 16
  • 29
3
votes
1 answer

Can JRebel reload Kotlin classes when they are used by kotlin-maven-plugin plugin on maven?

Can JRebel reload Kotlin classes when they are used by kotlin-maven-plugin plugin on Maven? The project runs on an application server.
Dagvadorj
  • 298
  • 4
  • 14
3
votes
0 answers

Auto reload application does not work for changes in XHTML files

I created a spring boot application using spring initializer. It was working okay and configured my intellij IDE to auto reload using devtools dependency. org.springframework.boot
asdlfkjlkj
  • 2,258
  • 6
  • 20
  • 28
3
votes
1 answer

Scala / Lift: Set up hotdeploy through Eclipse?

How do I set up hotdeploy for Scala/Lift projects in Eclipse? Basically, I would like to be able to Set up a new project, from say lift-archetype-basic Launch jetty:run, either from some run-configuration or through terminal Be able to edit Scala…
aioobe
  • 413,195
  • 112
  • 811
  • 826
1 2
3
11 12