How to disable "Run Monitor" in NetBeans?

I am using NetBeans IDE v7.0.1. When I try to run the program (F6 Shortcut), a pop-up window appears on the left side with the name "Run Monitor". How to disable it? Thanks to everyone.

+4
source share
2 answers

go into your project properties (right-click on the project → properties or go to the "File" menu and select the project properties), select "profile" and uncheck "Show profiling indicators at runtime"

+5
source

In later versions of NetBeans, you can disable the HTTP monitor in the Server Properties dialog box. On the Services tab, we expand the node server. Right-click on Apache Tomcat and select Properties. On the Connection tab, uncheck the Enable HTTP Monitor box. We may also need to restart Tomcat.

enter image description here

+2
source

All Articles