How do you stop Console from popping up automatically in Eclipse

JavaEclipse

Java Problem Overview


I have a web application running in Eclipse with Tomcat. It has a few errors that make the console popup every few seconds. How do I stop it from automatically popping up and taking focus?

Java Solutions


Solution 1 - Java

There are two buttons on the console toolbar at the bottom that allow you to take focus (or not)...one for stdout, one for stderr. I have an image with the buttons circled.

alt text

Solution 2 - Java

There are two icons - "Show Console When X changes" in the console view. Unselect those.

Solution 3 - Java

This can also be done in Preferences

Windows > Preferences > Run/Debug > Console

uncheck "Show when program writes to standard out" and/or "Show when program writes to standard error".

Solution 4 - Java

In poped up window.

  1. https://i.stack.imgur.com/dbaR3.png

2.New console view.

3.close the popped up window.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Question124697View Question on Stackoverflow
Solution 1 - JavaJeff StoreyView Answer on Stackoverflow
Solution 2 - JavaBozhoView Answer on Stackoverflow
Solution 3 - Javajumps4funView Answer on Stackoverflow
Solution 4 - JavaGaneshView Answer on Stackoverflow