Reputation: 3370
I am running my web-app on Tomcat in IDE Intellij Idea and I need to update my web application every time when I press the Save All button. Is it possible? I would like to have the behavior like in IDE Netbeans.
Upvotes: 0
Views: 416
Reputation: 12225
First off, in IntelliJ IDEA you generally do not use the save button, it does it for you. If you want to hot swap (as far as that would be possible), run your webapp in debug mode and hit ctrl
+ F9
.
Upvotes: 1