码迷,mamicode.com
首页 > Web开发 > 详细

servlet跳转jsp

时间:2016-05-05 22:35:15      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

ackage com.monkey.servlet;

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;

public class mainServlet extends HttpServlet {
    private static final String CONTENT_TYPE = "text/html; charset=GB2312";

    //Initialize global variables
    public void init() throws ServletException {
    }

    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws
            ServletException, IOException {
        RequestDispatcher rd = request.getRequestDispatcher("hello.jsp");
        String name = "tom";
        request.setAttribute("id",name);//存值
        rd.forward(request,response);
    }

    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws
            ServletException, IOException {
        doGet(request, response);
    }

    //Clean up resources
    public void destroy() {
    }
}

servlet跳转jsp

标签:

原文地址:http://www.cnblogs.com/20000ding/p/5463266.html

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