A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 代文娟 中级黑马   /  2013-11-3 11:43  /  1698 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

为什么我一再浏览器中访问就出现这句话呢?
This is class cn.itcast.response.RequestDemo1, using the GET method
  1. package cn.itcast.response;
  2. import java.io.IOException;
  3. import java.io.PrintWriter;

  4. import javax.servlet.ServletException;
  5. import javax.servlet.http.HttpServlet;
  6. import javax.servlet.http.HttpServletRequest;
  7. import javax.servlet.http.HttpServletResponse;
  8. //request的常用方法
  9. public class RequestDemo1 extends HttpServlet {

  10.         public void doGet(HttpServletRequest request, HttpServletResponse response)
  11.                         throws ServletException, IOException {
  12.            System.out.println(request.getRequestURI());
  13.           System.out.println(request.getRequestURL());
  14.                        
  15.         }
  16.         public void doPost(HttpServletRequest request, HttpServletResponse response)
  17.                         throws ServletException, IOException {
  18.              doGet(request, response);
  19.         }
  20. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
黄炳期 + 1

查看全部评分

6 个回复

倒序浏览
servlet没有被编译,把部署的项目删除了再重新部署一下就好了
回复 使用道具 举报
建议:
1:删除发布项目,重新发布;
2:断点调试查看代码运行情况,重新确认
回复 使用道具 举报
servlet未编译啊,你重新部署一下就ok了
回复 使用道具 举报
哦,多谢大家了
回复 使用道具 举报
姐姐呀,要重启一下myeclipse一次,新的servlet还没编译,是myeclipse的问题,我遇到过
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马