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.