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

request 请求转发

时间:2014-08-15 14:35:28      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:http   java   使用   os   io   数据   for   ar   

package request;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

//request请求转发,以及使用request域对象吧数据带给转发资源
public class RequestDemo5 extends HttpServlet {
    //用congtext存数据是行不通的,但是request存数据是可以的,每个请求对象都有唯一的request
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        String data = "aaaaaa";
        request.setAttribute("data", data);
        //request也可实现转发
        request.getRequestDispatcher("/message.jsp").forward(request, response);
    }
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request, response);
    }

}

request 请求转发,布布扣,bubuko.com

request 请求转发

标签:http   java   使用   os   io   数据   for   ar   

原文地址:http://www.cnblogs.com/siashan/p/3914737.html

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