How to live update debug code in IntelliJ
Answered
I have a code that I would like not to re-run each time I'm changing a single variable on debug, in IntelliJ. This is automatically done on the Eclipse IDE but not using IntelliJ.
How to make the program updating itself without having to re-run it
Please sign in to leave a comment.
Hi!
Please check https://www.jetbrains.com/help/idea/updating-applications-on-application-servers.html
To live update debug code in IntelliJ, you can follow these steps:
Note that not all changes can be reloaded dynamically, such as changes to method signatures or class hierarchies. In such cases, you may need to stop the debug session, recompile the code, and start a new debug session.
By following these steps, you can live update and debug your code in IntelliJ without having to restart the debug session every time you make changes to your code.