"Hotswap" or "Hotswapping" refers to dynamically replacing a class implementation during the runtime of an application.
Questions tagged [hotswap]
246 questions
0
votes
2 answers
Enable hotswap into Spring boot embedded server
Can hotswap be enabled using Spring boot ? When deploying Spring projects with Tomcat server setup separately hotswap seems enabled by default. But with Spring boot apps hotswap does not appear to be enabled. Is there a config can update hot…

blue-sky
- 51,962
- 152
- 427
- 752
0
votes
2 answers
How to hot swap the current file in python
I am trying to hot swap a file in python. I am creating a game that takes a really long time to load. But I don't want to reload it every time. I am trying to change some code while the programme is in runtime.
For example:
I want to change…

D.White
- 3
- 3
0
votes
0 answers
Hot Swap Agent under eclipse - no immediately effects after change
I have a problem with hot swap agent on java 8u51 under eclipse. I installed DCEVM with same version and configured hot swap agent under eclipse. When I made a change nothing happens (and nothing appears in logs). For me it looks like hot swap is…

caro
- 381
- 3
- 5
- 20
0
votes
0 answers
Hot Swap Agent doesn't work with Java 8 and Tomcat 8.0.26
I have a question about hot swap agent. I configured it with java 8 and tomcat 8.0.26 64 bit. When I start server under Eclipse I got some errors:
Caused by: compile error: cannot find constructor…

caro
- 381
- 3
- 5
- 20
0
votes
1 answer
Is it possible to hot swap classes with new methods on Wildfly in IntelliJ?
I've successfully been using hot swap to update static resources like jsps and .js files, as well as some types of code changes in my class files. For example, adding a new command into an existing method or whatever seems to be working (although…

PentaKon
- 4,139
- 5
- 43
- 80
0
votes
0 answers
DCEVM with Maven and GWT
I'm trying to setup DCEVM (JDK 1.8 51) and HotSwap-Agent with my GWT/Maven project to be able to reload changes without restarting GWT's Super Devmode. To start with, my project is setup like so:
project
-core
-data
-i18n
where core is the main…

Troncoso
- 2,343
- 3
- 33
- 52
0
votes
1 answer
Using Hotswap agent with Jboss 5 in Eclipse
Trying to configure JBoss 5 to work with hotswapagent using eclipse. So far I have done the following:
Patched my jdk using DCEVM (installer-light-jdk7u71.2.jar) with option - install DCEVM as aljvm. Jdk patched is v1.6_45 (which Jboss…

andrewgmx
- 5
- 2
0
votes
1 answer
How to set up HotSwap in Eclipse
I am new to Eclipse thus this may be really beginner questions from me.
I want to set up hot-swap in Eclipse so non structural changes can be done and seen right in the running application. (Game development)
I think I have to have tomcat running. I…

Wrymn
- 173
- 1
- 2
- 13
0
votes
0 answers
Auto-reload of compiled classes in Tomcat 8 debug mode
In my application all compiled classes are put under WEB-INF/classes. I am trying to set up Tomcat so that it picks up changes in class files without reloading the context. The latter works by adding reloadable="true" to configuration, but…

siphiuel
- 3,480
- 4
- 31
- 34
0
votes
1 answer
Is it possible make hot swap on weblogic 12?
Front End: AngularJS
Back End: Java
Our employer decided to use Weblogic 12 to deploy the project. So our problem is:
Is there is any way to modify a javascript file and see the change immediately? (e.g. a host swap in weblogic)
Note: We don't use…

julioVG
- 81
- 1
- 12
0
votes
1 answer
Meanjs hotswap deployment
I'm trying to deploy my MEANjs application into production...
So far I've use jenkins, git,rsync, etc. to copy the project to the remote server.
and in the final step I just have to call
stop myMeanjsApp
Replace the folder with the new version of…

yokodev
- 1,266
- 2
- 14
- 28
0
votes
1 answer
Definition of "Hot Reload" in Java
I'm working with Java and I've been asked to Hotreload a jar file to an ejb-server.
So my question is (and yes I've googled it!), what is the definition of Hot reload anyway?

Khiem-Kim Ho Xuan
- 1,301
- 1
- 22
- 45
0
votes
2 answers
Have ability to hot swap classes while using a Maven run/debug configuration in Intellij
I want to use a Maven run/debug configuration in Intellij to build and run my application: a Spring Boot-powered web application packaged as a fat jar. I also want to be able to hot swap classes. But in Intellij, I only know how to get hot swapping…

David Groomes
- 2,303
- 1
- 21
- 23
0
votes
1 answer
Does GWT 2.6 Super Dev Mode supports hot swap (recompile) and how?
Recently I started to use Super Dev Mode to get look&feel of it. It took me couple of hours to get it up but I didn't find out how and actually can you use SDM for faster development using hot swapping.
Using Dev Mode all I had to do is save my…

Miki
- 2,493
- 2
- 27
- 39
0
votes
1 answer
IntelliJ Java compile can't find symbol of attached modules
I love the hot swap feature of Java and i'm using it a lot while debugging. I can't compile single classes that contains references to a class from another module in IntelliJ though (with CTRL + SHIFT + F9).
The error I get is the common java:…

ianaz
- 2,490
- 3
- 28
- 37