0
(NEED YOUR HELP) FOR Dynamic code âď¸
how to build self generating java application to dynamically create & modify classes...... how runtime complication can be achieved ? HELP đ is there any IDE exist ?? đ¤đ¤đ¤
1 Answer
+ 1
You can look into HotSwap. Intellij uses it to modify class files when the application is debugged and it identifies a code change.
Otherwise u might need to figure something like this,
Modify file, Compile file, Remove existing file from JVM, Load new class file in JVM.