IntelliJ Update Frame Display after each launch or Debug web application

I am running IntelliJ IDEA 14.0 ultimate 64 bit .i have launched the spring mvc project from the default template with the berth application server. In the "Change" setting, I unchecked the "Show dialog" every time I start / debug a project. enter image description here

But every time I start / debug a project, I see this annoying dialog box enter image description here

Am I their any way to stop this dialog every time I run the / Debug project in intellij?

+5
source share
1 answer

The "On Update action" settings that you showed in the screenshot will work only for the Upadate project ( ctrl+f10 ). To perform the update, you can press ctrl+f10 or click on the icon (blue circle arrow) in the left toolbar of the lower panel.

enter image description here

In this case, IDEA will work as specified in the settings, and the dialog will not be shown if you disabled the "Show dialog" checkbox.

Please note that IDEA will always show this dialog box when you try to run ( shift+f10 ) or Debug ( shift+f9 ) for an already running application.

Restarting and redistributing a project can take a long time. But if you just want to update resources or classes (without changing the interfaces), you do not need to restart the project, because the container (Thomcat, Jetty, etc.) can apply these changes on the fly. That is why IDEA offers you these options to save you time and make your work more convenient and efficient.

So, in order not to show the "Update" dialog, you can:

  • Performing a project update ( ctrl+f10 ) with the Show dialog box disabled.

  • Stop ( ctrl+f2 ) the current project and start ( shift+f9 ) or Debug ( shift+f10 ) again.

+1
source

Source: https://habr.com/ru/post/1245746/


All Articles