随笔 - 45, 文章 - 2, 评论 - 11, 引用 - 0
数据加载中……

初探Servlet

一、编写Servlet代码,继承自HttpServlet类,并覆盖    public void doGet(HttpServletRequest req, HttpServletResponse resp) 方法


二、部署Servlet。在web.xml中加入如下代码:


三、测试。在浏览器中输入:http://localhost:8080/ServletTest/hello

服务器过程是这样的:
1 服务器检测请求地址:http://localhost:8080/ServletTest/hello
2 得到字符串: /hello
3 在web.xml中寻找 <servlet-mapping>下的<url-pattern>内的值是否有对应的。有,就找到<servlet-name>的值
4 在web.xml中寻找 <servlet> 找到相应的servlet类执行

posted on 2010-09-30 10:40 jack zhai 阅读(80) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航: