码迷,mamicode.com
首页 > 其他好文 > 详细

The explaination of hello2

时间:2019-03-24 21:54:18      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:username   comment   应该   span   tps   isp   int   print   context   

String username = request.getParameter("username");

//声明一个string变量,并将“username”中的值返回给它

//获取前端传来的参数值.

//这里的request应该在servlet容器中

//通过容器传递给当前httpservlet
            if (username != null && username.length() > 0) {
                RequestDispatcher dispatcher =
                        getServletContext().getRequestDispatcher("/response");
 //通过当前context

//获取url为/response的servlet作为一个dispatcher资源


                if (dispatcher != null) {
                    dispatcher.include(request, response);

//将当前的request,response资源包含到dispatcher用于响应
//其实就是在dispatcher中通过request获得username

//然后在response中添加了hello这几句话

//(这里的dispatcher就是开始获得的/response对应的httpservlet)
                }
            }
            out.println("</body></html>");
        }
    }

The explaination of hello2

标签:username   comment   应该   span   tps   isp   int   print   context   

原文地址:https://www.cnblogs.com/cheneywxy/p/10590169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!