I\'m looking for a Java solution that would allow me to use AOP to weave new code on top of already running code at runtime. The key is not to require the restart of the JVM. Al
You can Implement an ASM solution that would allow to weave new code on top of already running code at runtime (with no downtime)
You might can use the same solution to remove the woven at runtime