How to live update debug code in IntelliJ
已回答
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
请先登录再写评论。
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.