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 Odpowiedź
+ 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.