我有一个servlet我想在控制台上看到输出,如果我用out.println替换System.out.println我的servlet正在运行
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
try {
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet NewServlet</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Servlet NewServlet at " + request.getContextPath ()
+ " </h1>");
System.out.println("exit");
out.println("</body>");
out.println("</html>");
} finally {
out.close();
}
}
退出程序未显示在控制台上。 任何人都可以告诉我原因
答案 0 :(得分:1)
我试用了你的示例代码,但它运行良好。我使用GlassFish作为服务器,因此在控制台中它会给出INFO: exit
作为结果。我认为您的"exit"
文字不明显。在您的"exit"
前加上"*"
个标记,然后看....