一。什么情况适合使用 Servlet
处理请求,调用 DAO。
一些纯编程的场合。
在jsp 中,可以直接使用 内置对象 ,不用实例化,而在 Servlet中不可以 。
二、在Serlvet 中怎么获得 内置 对象
1. out对象
response.setContentType("text/html;charset=gb2312"); //在用中文时要写response.setCharacterEncoding('gb2312"); PrintWriter out= response.getWriter();
2。request 和 response对象
已经获得了
3、application对象
ServletContext application = this.getServletContext();
4、session 对象
HttpSession session = request.getSession();