2015-01-07 7 views
5

での色の赤のすべてのテキストを表示するにTomcat 7、私は単純なJSPページ(なtest.jsp)をテストしています。それはブラウザではうまくいきますが、コンソールのすべてのテキストは赤色で表示されます。なぜEclipseがある - 私は、Tomcat 7でのEclipseケプラーを使用しているコンソール

私は細かいことをウィンドウ/環境設定/(実行/デバッグ)プロパティと、すべての縫い目にチェックインしました。

コンソールからのテキストは以下の通りです:

Jan 07, 2015 3:31:07 PM org.apache.catalina.core.AprLifecycleListener init 
INFO: The APR based Apache Tomcat Native library which allows optimal performance 
in production environments was not found on the java.library.path: 
C:\Java\jdk1.8.0_05\jre\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;...etc 
Jan 07, 2015 3:31:08 PM org.apache.coyote.AbstractProtocol init 
INFO: Initializing ProtocolHandler ["http-bio-8080"] 
Jan 07, 2015 3:31:08 PM org.apache.coyote.AbstractProtocol init 
INFO: Initializing ProtocolHandler ["ajp-bio-8009"] 
Jan 07, 2015 3:31:08 PM org.apache.catalina.startup.Catalina load 
INFO: Initialization processed in 1676 ms 
Jan 07, 2015 3:31:08 PM org.apache.catalina.core.StandardService startInternal 
INFO: Starting service Catalina 
Jan 07, 2015 3:31:08 PM org.apache.catalina.core.StandardEngine startInternal 
INFO: Starting Servlet Engine: Apache Tomcat/7.0.56 
Jan 07, 2015 3:31:11 PM org.apache.catalina.util.SessionIdGenerator createSecureRandom 
INFO: Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took 
[1,076] milliseconds. 
Jan 07, 2015 3:31:12 PM org.apache.catalina.startup.HostConfig deployDescriptor 
INFO: Deploying configuration descriptor 
C:\MauricioFiles\ECLIPSE\Eclipse_JEE7_I\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\conf 
\Catalina\localhost\Servlets_JSP_chapter21_musicII.xml 
Jan 07, 2015 3:31:12 PM org.apache.catalina.startup.SetContextPropertiesRule begin 
WARNING: [SetContextPropertiesRule]{Context} Setting property 'source' to  
'org.eclipse.jst.jee.server: 
Servlets_JSP_chapter21_musicII' did not find a matching property. 
Jan 07, 2015 3:31:12 PM org.apache.catalina.startup.HostConfig deployDescriptor 
INFO: Deployment of configuration descriptor 
C:\MauricioFiles\ECLIPSE\Eclipse_JEE7_I\.metadata\.plugins 
\org.eclipse.wst.server.core\tmp0\conf\Catalina\localhost\Servlets_JSP_chapter21_musicII.xml has  
finished in 862 ms 
Jan 07, 2015 3:31:12 PM org.apache.coyote.AbstractProtocol start 
INFO: Starting ProtocolHandler ["http-bio-8080"] 
Jan 07, 2015 3:31:13 PM org.apache.coyote.AbstractProtocol start 
INFO: Starting ProtocolHandler ["ajp-bio-8009"] 
Jan 07, 2015 3:31:13 PM org.apache.catalina.startup.Catalina start 
INFO: Server startup in 4236 ms 

はのproyectに何か問題ですか黒(赤でちょうどエラー)でテキストを表示する方法はありますか? ありがとうございました!

+0

可能重複http://stackoverflow.com/questions/3365280/tomcatに-標準出力-として誤りでケラレ) –

答えて

3

赤色のテキストはSystem.errストリームに書き込まれ、黒色のテキストはSystem.outに書き込まれます。何も本質的に間違っているわけではなく、システムが出力ストリームをどのように区別しているかだけです。あなたは、「環境設定」を右コンソールでクリックして選択することで、お好みに合わせて表示を設定することができます

eclipse console preferense

([EclipseでエラーとしてTomcat STDOUT]の
+0

感謝。マイコンソールの好みは画像と同じに見えますが、色は常に赤です、私は赤い内のすべてのテキストを避けるために変更する可能性のある他の事があるかもしれませんか?ありがとうございました。 – MauricioTL

+1

はあなたのロガーを再構成する、または色を変更します。上記の赤い四角形をクリックし、黒色に設定します。または、プログラムが標準エラーに書き込むときに表示をオフにします。またはあなたが何を意味するか説明してください... –