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
10
votes
4 answers

How to use docker in the development phase of a devops life cycle?

I have a couple of questions related to the usage of Docker in a development phase. I am going to propose three different scenarios of how I think Docker could be used in a development environment. Let's imagine that we are creating a REST API in…
9
votes
3 answers

hot reloading / swapping with Python

I want code changes to take effect immediately during development. How can I detect changed files and reload them in the running Python (2.7) application? Edit: After reading the pages linked by 'Ivo van der Wijk', I think it would be best to…
deamon
  • 89,107
  • 111
  • 320
  • 448
9
votes
4 answers

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 following configuration:
deamon
  • 89,107
  • 111
  • 320
  • 448
9
votes
3 answers

Dropwizard hot deployment

I'm looking for a simple to use system in Java which creates a REST service for me. So I found dropwizard but as far as I can use google it turns out it lacks hot deployment although jetty is able to do so. When using the maven-shade-plugin it takes…
Karussell
  • 17,085
  • 16
  • 97
  • 197
8
votes
2 answers

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 did to cause this behaviour. My projects are…
user321068
8
votes
2 answers

Hot deploying changes with Netbeans, Maven, and Glassfish

Recently we migrated from using ant to maven. Within Netbeans, I used to edit and save html, xhtml, javascript, css files in the WAR and almost immediately the changes were available on the server. Now, when I edit and save those types of files in…
originalbryan
  • 1,027
  • 1
  • 13
  • 21
7
votes
0 answers

Does Spring Boot support Hot Deployments in Production environments?

Can we do Hot deployments (updating running code) in Spring Boot applications running outside the IDE. I see that "spring-boot-devtools" is mainly used when developers work through code changes in their IDE but, am looking for hot deployments in…
yathirigan
  • 5,619
  • 22
  • 66
  • 104
7
votes
1 answer

How can I restore Hot Code Replace Failed alert window in Eclipse?

Hot Code Replace Failed window/message was disabled in Eclipse. Now I need reenable it again, how can I do it?
andy007
  • 907
  • 1
  • 15
  • 41
7
votes
4 answers

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 isn't supported?
bpapa
  • 21,409
  • 25
  • 99
  • 147
6
votes
1 answer

Hot deployment in akka

In these slides: http://www.slideshare.net/jboner/introducing-akka I've read that Akka supports hot deployment. The way I understand this term is I'll be able to make code changes without restarting my application and losing it's current state. …
src091
  • 2,807
  • 7
  • 44
  • 74
6
votes
8 answers

Incremental deployment of java web applications

We have following problem. Developers frequently need to make small changes to our web applications. When I say small, I mean things like correcting the spelling on a web page or similar. Generating and redeploying war archives can be slow and…
Dan
  • 11,077
  • 20
  • 84
  • 119
6
votes
3 answers

Eclipse -> Glassfish won't incrementally deploy - JBOSS does

I've started in a new job developing Java EE 6 apps with an Ubuntu workstation. Glassfish is the main App Server I've been using for a year or so now and am quite familiar with it. I've also tried JBoss to debug this problem. I'm developing with…
HankCa
  • 9,129
  • 8
  • 62
  • 83
6
votes
4 answers

How to hot deploy JSP changes in maven app?

I have a maven web application. I am using springsource tool suite and its built in tc fabric server. Every time I make any changes I have to do mvn clean install and restart the server. Even for the JSP changes. Is there any way I can just make…
ajm
  • 12,863
  • 58
  • 163
  • 234
6
votes
1 answer

Tomcat Hot Deploy not working

I'm having an issue hot deploying a new WAR on my Tomcat 6 server. When I add in my new WAR I can see that Tomcat is attempting to deploy it. However, I believe the problem lies in undeploying the old war - the exploded war folder's contents are all…
Gerard
  • 4,818
  • 5
  • 51
  • 80
6
votes
3 answers

Enable hot deploy for web pages in jboss-as-7.1.1.Final

i am new to jboss, and i want to enable the hot deploy feature as in tomcat. right now when making any change to the xhtml page, i rebuild the application then redeploy the whole war, which is too much. but in tomcat the war file was extracted, and…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
1
2
3
11 12