原来servlet的doGet()方法中的内容:
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<html>" +
"hello this is the first servlet</br>" +
"I want to test if the servlet is abnormal" +   //后来增加了一行,
"</html>");
}浏览器访问时只能显示hello this is the first servletMyeclipse + tomcat。请问原因及解决办法。