<HTML>
<BODY>
<%
// This is a scriptlet. Notice that the "date"
// variable we declare here is available in the
// embedded expression later on.
System.out.println( "Evaluating date now" );
java.util.Date date = new java.util.Date();
%>
Hello! The time is now <%= date %>
</BODY>
</HTML>
这是一个简单的JSP文件。我将它放在Tomcat的webapp目录下,并通过http://localhost:8080访问它。
它工作正常,但我不知道println的输出在哪里。换句话说,我该如何观察输出?
答案 0 :(得分:1)
这将打印到控制台,以便tomcat运行的位置(它在前台)或重定向的文件。
“ - 我有Tomcat 5.5,它位于/ log文件夹下的logfile catalina.log”
http://www.coderanch.com/t/468689/Tomcat/redirect-Tomcat-console-output-log