I'm having problems with Eclipse automatically clearing the console after doing Maven builds. This doesn't seem to happen all the time, but because of this I can't see the results. Does anybody know how to change this behavior?
问问题
15721 次
3 回答
22
阻止 Eclipse 控制台清除如下:
- 选择Window » Preferences以显示Preferences对话框
- 展开运行/调试
- 选择控制台
- 取消选中限制控制台输出
- 单击确定接受新的首选项并关闭对话框
于 2014-09-02T13:32:50.750 回答
10
有不同类型的控制台。你有一个Console
包含 Java 程序的输出,还有一个Maven console
包含 Maven 插件的输出。
此外还有其他控制台类型,例如 SVN 控制台...
要保留控制台输出,您可以将应用程序的输出重定向到文件。您可以在选项卡Run Configurations
上的对话框中执行此Common
操作。
于 2012-11-27T08:52:31.127 回答
-3
我自己找到了解决方案,我在程序的一部分中启用了 ant-builder,这导致控制台消失。
右键单击项目 => 属性 => 构建器 => 禁用 ant 构建器
于 2012-11-27T09:27:48.910 回答