Ess
Ess

Reputation: 3370

Intellij Idea - How to update application on Save All action

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

Answers (1)

Tobb
Tobb

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

Related Questions