1
vote
2answers
72 views

dynamically loading classes from a ImageJ plugin

I am having problems dynamically loading a java class from a dynamically loaded class. My class is an ImageJ plugin and it loads other modules dynamically through classloader. I have ...
0
votes
1answer
118 views

Commons-configuration and DefaultConfigurationBuilder don't reload automatically

I've got a DefaultConfigurationBuilder (from commons-configuration v1.9). This object (named config) is initialized by this very simple file : <?xml version="1.0" encoding="UTF-8" ?> ...
0
votes
3answers
109 views

Recompiling the object during runtime

I am developing a project in java in which ,after running main file , some java files get altered and if i run that file again during the same execution the output does not show the changes done in ...
2
votes
2answers
868 views

Java, runtime class reloading

I am looking for a way to reload a class into Java at runtime. The motivation is to make debugging more efficient. The application is a typical client/server design that synchronously processes ...
1
vote
1answer
480 views

Wicket - runtime class reloading

I have classical complaint - rebuilding and reloading the web app takes too long. I want to compile the classes (preferrably from the IDE) or change a static file and let the server check what changed ...
3
votes
2answers
501 views

Java problems reloading code using ClassLoader

I recently made a post http://stackoverflow.com/questions/3079280/update-java-code-during-runtime and after a few hours fiddling around with different example codes and reading tutorials I have run ...