jsp和servlet的关系

不问归期 提交于 2021-01-30 10:55:47

看这篇文章之前先查看:JavaWeb开发之四:servlet技术 黑马程序员_轻松掌握JavaWeb开发之四Servlet开发 方立勋老师视频教程相当的经典

参看视频:

https://www.bilibili.com/video/av14063556/?from=search&seid=5530945878428625444#page=2 传智播客 徐仕峰老师视频

jsp的原理:

 

结合右边给出的流程图:

当客户端浏览器向服务器请求一个 JSP 页面时,服务器收到该请求后,首先检查所请求的这个JSP 文件内容 ( 代码 ) 是否已经被更新,或者是否是 JSP 文件创建后的第一次被访问:

--如果是,那么,这个 JSP 文件就会在服务器端的 JSP 引擎作用下转化为一个 Servlet 类的 Java 源代码文件。紧接着,这个 Servlet 类会在 Java 编译器的作用下被编译成一个字节码文件,并装载到 jvm 解释执行。剩下的就等同于 Servlet 的处理过程了。

--如果被请求的 JSP 文件内容 ( 代码 ) 没有被修改,那么它的处理过程也等同于一个 Servlet 的处理过程。即直接由服务器检索出与之对应的 Servlet 实例来处理。

需要注意的是,JSP 文件不是在服务器启动的时候转换成 Servlet 类的。而是在被客户端访问的时候才可能发生转换的 ( 如 JSP 文件内容没有被更新等,就不再发生 Servlet 转换 )。
就 Tomcat 而言,打开目录 %Tomcat%/work/%您的工程文件目录%,然后会看到里面有 3个子目录:org/apache/jsp,若没有这 3 个目录,说明项目的 JSP 文件还没有被访问过,打开进到 jsp 目录下,会看到一些 *_jsp.java 和 *_jsp.class 文件,这就是 JSP 文件被转换成
Servlet 类的源文件和字节码文件了。
有兴趣的话,可以使用浏览器访问服务器中的 JSP,然后观察 JSP 转换 Servlet 以及编译的时机。

jsp编译成java类的代码

//附上jsp转换成servlet后的java代码

package org.apache.jsp;

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

public final class index_jsp extends org.apache.jasper.runtime.HttpJspBase
    implements org.apache.jasper.runtime.JspSourceDependent {


   int count = 0;
   
   int getCount(){
   int num = 100;
   return num = 100*count;
   
   }
   
    
  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();

  private static java.util.List _jspx_dependants;

  private javax.el.ExpressionFactory _el_expressionfactory;
  private org.apache.AnnotationProcessor _jsp_annotationprocessor;

  public Object getDependants() {
    return _jspx_dependants;
  }

  public void _jspInit() {
    _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
    _jsp_annotationprocessor = (org.apache.AnnotationProcessor) getServletConfig().getServletContext().getAttribute(org.apache.AnnotationProcessor.class.getName());
  }

  public void _jspDestroy() {
  }

  public void _jspService(HttpServletRequest request, HttpServletResponse response)
        throws java.io.IOException, ServletException {

    PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    JspWriter _jspx_out = null;
    PageContext _jspx_page_context = null;


    try {
      response.setContentType("text/html;charset=ISO-8859-1");
      pageContext = _jspxFactory.getPageContext(this, request, response,
                  null, true, 8192, true);
      _jspx_page_context = pageContext;
      application = pageContext.getServletContext();
      config = pageContext.getServletConfig();
      session = pageContext.getSession();
      out = pageContext.getOut();
      _jspx_out = out;

      out.write('\r');
      out.write('\n');

String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

      out.write("\r\n");
      out.write("\r\n");
      out.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\r\n");
      out.write("<html>\r\n");
      out.write("  <head>\r\n");
      out.write("    <base href=\"");
      out.print(basePath);
      out.write("\">\r\n");
      out.write("    \r\n");
      out.write("    <title>My JSP 'index.jsp' starting page</title>\r\n");
      out.write("\t<meta http-equiv=\"pragma\" content=\"no-cache\">\r\n");
      out.write("\t<meta http-equiv=\"cache-control\" content=\"no-cache\">\r\n");
      out.write("\t<meta http-equiv=\"expires\" content=\"0\">    \r\n");
      out.write("\t<meta http-equiv=\"keywords\" content=\"keyword1,keyword2,keyword3\">\r\n");
      out.write("\t<meta http-equiv=\"description\" content=\"This is my page\">\r\n");
      out.write("  </head>\r\n");
      out.write("  \r\n");
      out.write("  <body>\r\n");
      out.write("  ");

      
  
   
      out.write("\r\n");
      out.write("   \r\n");
      out.write("   ");
      out.write("\r\n");
      out.write("  \r\n");
      out.write("  ");
      out.print(++count );
      out.write("\r\n");
      out.write("  ");
      out.print( getCount() );
      out.write("\r\n");
      out.write("  <form action=\"test.do\" method=\"post\">\r\n");
      out.write("  <select name =\"color\">\r\n");
      out.write("  <option>White</option>\r\n");
      out.write("  <option>Red</option>\r\n");
      out.write("  <option>Yellow</option>\r\n");
      out.write("  <option>Blue</option>\r\n");
      out.write("  </select>\r\n");
      out.write("  \r\n");
      out.write("  <input type=\"checkbox\" name=\"hobby\" value=\"football\">football<br>\r\n");
      out.write("  <input type=\"checkbox\" name=\"hobby\" value=\"football\">basketball<br>\r\n");
      out.write("  <input type=\"checkbox\" name=\"hobby\" value=\"football\">baseball<br>\r\n");
      out.write("  \r\n");
      out.write("  <input type=\"submit\">\r\n");
      out.write("  </form>\r\n");
      out.write("  </body>\r\n");
      out.write("</html>\r\n");
    } catch (Throwable t) {
      if (!(t instanceof SkipPageException)){
        out = _jspx_out;
        if (out != null && out.getBufferSize() != 0)
          try { out.clearBuffer(); } catch (java.io.IOException e) {}
        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
      }
    } finally {
      _jspxFactory.releasePageContext(_jspx_page_context);
    }
  }
}

 

在jsp生成的对应的java代码中,生成了jsp的9大内置对象

 PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    JspWriter _jspx_out = null;
    PageContext _jspx_page_context = null;

 

 案例二:

isErrorPage 指令用来指定当前JSP页面是不是异常处理页面。
该属性通常与errorPage属性一起使用。

使用方法:在可能出现错误的页面的page属性中,指定errorPage属性,在处理错误的页面指定isErrorPage属性。

举例:

出现错误的页面:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ page errorPage="isErrorPage.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
int a =10;
int b=0;
int c=a/b;

%>
</body>
</html>

 

处理错误的页面:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"
    isErrorPage="true"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
程序发生了错误。
</body>
</html>

 

isErrorPage属性的值为true或者false,当值为true时说明当前页面就是处理错误的页面。

如果有很多个jsp发生错误的时候都要跳转到某个错误的页面,除了每个页面单独配置 <%@ page errorPage="isErrorPage.jsp" %>之外,可以在web.xml中进行全局配置

jsp的内置对象1:session对象

 

 

 

page代表的是当前jsp编译生成的java类就是当前类。

JSP共有以下9种基本内置组件(可与ASP的6种内部组件相对应):
  1.request对象(作用域)
  客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应。它是HttpServletRequest类的实例。
  方 法 说 明:
  1 object getAttribute(String name) 返回指定属性的属性值
  2 Enumeration getAttributeNames() 返回所有可用属性名的枚举
  3 String getCharacterEncoding() 返回字符编码方式
  4 int getContentLength() 返回请求体的长度(以字节数)
  5 String getContentType() 得到请求体的MIME类型
  6 ServletInputStream getInputStream() 得到请求体中一行的二进制流
  7 String getParameter(String name) 返回name指定参数的参数值
  8 Enumeration getParameterNames() 返回可用参数名的枚举
  9 String[] getParameterValues(String name) 返回包含参数name的所有值的数组
  10 String getProtocol() 返回请求用的协议类型及版本号
  11 String getScheme() 返回请求用的计划名,如:http.https及ftp等
  12 String getServerName() 返回接受请求的服务器主机名
  13 int getServerPort() 返回服务器接受此请求所用的端口号
  14 BufferedReader getReader() 返回解码过了的请求体
  15 String getRemoteAddr() 返回发送此请求的客户端IP地址
  16 String getRemoteHost() 返回发送此请求的客户端主机名
  17 void setAttribute(String key,Object obj) 设置属性的属性值
  18 String getRealPath(String path) 返回一虚拟路径的真实路径
  2.response对象
  response对象包含了响应客户请求的有关信息,但在JSP中很少直接用到它。它是HttpServletResponse类的实例。
  方 法 说 明:
  1 String getCharacterEncoding() 返回响应用的是何种字符编码
  2 ServletOutputStream getOutputStream() 返回响应的一个二进制输出流
  3 PrintWriter getWriter() 返回可以向客户端输出字符的一个对象
  4 void setContentLength(int len) 设置响应头长度
  5 void setContentType(String type) 设置响应的MIME类型
  6 sendRedirect(java.lang.String location) 重新定向客户端的请求
  3.session对象(作用域)
  session对象指的是客户端与服务器的一次会话,从客户连到服务器的一个WebApplication开始,直到客户端与服务器断开连接为止。它是HttpSession类的实例.
  方法说明:
  1 long getCreationTime() 返回SESSION创建时间
  2 public String getId() 返回SESSION创建时JSP引擎为它设的惟一ID号
  3 long getLastAccessedTime() 返回此SESSION里客户端最近一次请求时间
  4 int getMaxInactiveInterval() 返回两次请求间隔多长时间此SESSION被取消(ms)
  5 String[] getValueNames() 返回一个包含此SESSION中所有可用属性的数组
  6 void invalidate() 取消SESSION,使SESSION不可用
  7 boolean isNew() 返回服务器创建的一个SESSION,客户端是否已经加入
  8 void removeValue(String name) 删除SESSION中指定的属性
  9 void setMaxInactiveInterval() 设置两次请求间隔多长时间此SESSION被取消(ms)
  4.out对象
  out对象是JspWriter类的实例,是向客户端输出内容常用的对象
  方 法 说 明:
  1 void clear() 清除缓冲区的内容
  2 void clearBuffer() 清除缓冲区的当前内容
  3 void flush() 清空流
  4 int getBufferSize() 返回缓冲区以字节数的大小,如不设缓冲区则为0
  5 int getRemaining() 返回缓冲区还剩余多少可用
  6 boolean isAutoFlush() 返回缓冲区满时,是自动清空还是抛出异常
  7 void close() 关闭输出流
  5.page对象(作用域)
  page对象就是指向当前JSP页面本身,有点象类中的this指针,它是java.lang.Object类的实例
  序号 方 法 说 明
  1 class getClass 返回此Object的类
  2 int hashCode() 返回此Object的hash码
  3 boolean equals(Object obj) 判断此Object是否与指定的Object对象相等
  4 void copy(Object obj) 把此Object拷贝到指定的Object对象中
  5 Object clone() 克隆此Object对象
  6 String toString() 把此Object对象转换成String类的对象
  7 void notify() 唤醒一个等待的线程
  8 void notifyAll() 唤醒所有等待的线程
  9 void wait(int timeout) 使一个线程处于等待直到timeout结束或被唤醒
  10 void wait() 使一个线程处于等待直到被唤醒
  11 void enterMonitor() 对Object加锁
  12 void exitMonitor() 对Object开锁
  6.application对象(作用域)
  
  application对象实现了用户间数据的共享,可存放全局变量。它开始于服务器的启动,直到服务器的关闭,在此期间,此对象将一直存在;这样在用户的前后连接或不同用户之间的连接中,可以对此对象的同一属性进行操作;在任何地方对此对象属性的操作,都将影响到其他用户对此的访问。服务器的启动和关闭决定了application对象的生命。它是ServletContext类的实例。
  序号 方 法 说 明
  1 Object getAttribute(String name) 返回给定名的属性值
  2 Enumeration getAttributeNames() 返回所有可用属性名的枚举
  3 void setAttribute(String name,Object obj) 设定属性的属性值
  4 void removeAttribute(String name) 删除一属性及其属性值
  5 String getServerInfo() 返回JSP(SERVLET)引擎名及版本号
  6 String getRealPath(String path) 返回一虚拟路径的真实路径
  7 ServletContext getContext(String uripath) 返回指定WebApplication的application对象
  8 int getMajorVersion() 返回服务器支持的Servlet API的最大版本号
  9 int getMinorVersion() 返回服务器支持的Servlet API的最大版本号
  10 String getMimeType(String file) 返回指定文件的MIME类型
  11 URL getResource(String path) 返回指定资源(文件及目录)的URL路径
  12 InputStream getResourceAsStream(String path) 返回指定资源的输入流
  13 RequestDispatcher getRequestDispatcher(String uripath) 返回指定资源的RequestDispatcher对象
  14 Servlet getServlet(String name) 返回指定名的Servlet
  15 Enumeration getServlets() 返回所有Servlet的枚举
  16 Enumeration getServletNames() 返回所有Servlet名的枚举
  17 void log(String msg) 把指定消息写入Servlet的日志文件
  18 void log(Exception exception,String msg) 把指定异常的栈轨迹及错误消息写入Servlet的日志文件
  19 void log(String msg,Throwable throwable) 把栈轨迹及给出的Throwable异常的说明信息 写入Servlet的日志文件
  7.exception对象
  exception对象是一个例外对象,当一个页面在运行过程中发生了例外,就产生这个对象。如果一个JSP页面要应用此对象,就必须把isErrorPage设为true,否则无法编译。他实际上是java.lang.Throwable的对象
  序号 方 法 说 明
  1 String getMessage() 返回描述异常的消息
  2 String toString() 返回关于异常的简短描述消息
  3 void printStackTrace() 显示异常及其栈轨迹
  4 Throwable FillInStackTrace() 重写异常的执行栈轨迹
  8.pageContext对象
  pageContext对象提供了对JSP页面内所有的对象及名字空间的访问,也就是说他可以访问到本页所在的SESSION,也可以取本页面所在的application的某一属性值,他相当于页面中所有功能的集大成者,它的本类名也叫pageContext。
  序号 方 法 说 明
  1 JspWriter getOut() 返回当前客户端响应被使用的JspWriter流(out)
  2 HttpSession getSession() 返回当前页中的HttpSession对象(session)
  3 Object getPage() 返回当前页的Object对象(page)
  4 ServletRequest getRequest() 返回当前页的ServletRequest对象(request)
  5 ServletResponse getResponse() 返回当前页的ServletResponse对象(response)
  6 Exception getException() 返回当前页的Exception对象(exception)
  7 ServletConfig getServletConfig() 返回当前页的ServletConfig对象(config)
  8 ServletContext getServletContext() 返回当前页的ServletContext对象(application)
  9 void setAttribute(String name,Object attribute) 设置属性及属性值
  10 void setAttribute(String name,Object obj,int scope) 在指定范围内设置属性及属性值
  11 public Object getAttribute(String name) 取属性的值
  12 Object getAttribute(String name,int scope) 在指定范围内取属性的值
  13 public Object findAttribute(String name) 寻找一属性,返回起属性值或NULL
  14 void removeAttribute(String name) 删除某属性
  15 void removeAttribute(String name,int scope) 在指定范围删除某属性
  16 int getAttributeScope(String name) 返回某属性的作用范围
  17 Enumeration getAttributeNamesInScope(int scope) 返回指定范围内可用的属性名枚举
  18 void release() 释放pageContext所占用的资源
  19 void forward(String relativeUrlPath) 使当前页面重导到另一页面
  20 void include(String relativeUrlPath) 在当前位置包含另一文件
  9.config对象
  config对象是在一个Servlet初始化时,JSP引擎向它传递信息用的,此信息包括Servlet初始化时所要用到的参数(通过属性名和属性值构成)以及服务器的有关信息(通过传递一个ServletContext对象)
  序号 方 法 说 明
  1 ServletContext getServletContext() 返回含有服务器相关信息的ServletContext对象
  2 String getInitParameter(String name) 返回初始化参数的值
  3 Enumeration getInitParameterNames() 返回Servlet初始化所需所有参数的枚举

session的生命周期

Session存储在服务器端,一般为了防止在服务器的内存中(为了高速存取),Sessinon在用户访问第一次访问服务器时创建,需要注意只有访问JSP、Servlet等程序时才会创建Session,只访问HTML、IMAGE等静态资源并不会创建Session,可调用request.getSession(true)强制生成Session。

  Session什么时候失效?

  1. 服务器会把长时间没有活动的Session从服务器内存中清除,此时Session便失效。Tomcat中Session的默认失效时间为20分钟。

  2. 调用Session的invalidate方法。

  Session对浏览器的要求:

  虽然Session保存在服务器,对客户端是透明的,它的正常运行仍然需要客户端浏览器的支持。这是因为Session需要使用Cookie作为识别标志。HTTP协议是无状态的,Session不能依据HTTP连接来判断是否为同一客户,因此服务器向客户端浏览器发送一个名为JSESSIONID的Cookie,它的值为该Session的id(也就是HttpSession.getId()的返回值)。Session依据该Cookie来识别是否为同一用户。

 

  该Cookie为服务器自动生成的,它的maxAge属性一般为-1,表示仅当前浏览器内有效,并且各浏览器窗口间不共享,关闭浏览器就会失效。因此同一机器的两个浏览器窗口访问服务器时,会生成两个不同的Session。但是由浏览器窗口内的链接、脚本等打开的新窗口(也就是说不是双击桌面浏览器图标等打开的窗口)除外。这类子窗口会共享父窗口的Cookie,因此会共享一个Session。

 

  注意:新开的浏览器窗口会生成新的Session,但子窗口除外。子窗口会共用父窗口的Session。例如,在链接上右击,在弹出的快捷菜单中选择"在新窗口中打开"时,子窗口便可以访问父窗口的Session。

 

如果客户端浏览器将Cookie功能禁用,或者不支持Cookie怎么办?例如,绝大多数的手机浏览器都不支持Cookie。Java Web提供了另一种解决方案:URL地址重写。

  URL地址重写是对客户端不支持Cookie的解决方案。URL地址重写的原理是将该用户Session的id信息重写到URL地址中。服务器能够解析重写后的URL获取Session的id。这样即使客户端不支持Cookie,也可以使用Session来记录用户状态。HttpServletResponse类提供了encodeURL(String url)实现URL地址重写,该方法会自动判断客户端是否支持Cookie。如果客户端支持Cookie,会将URL原封不动地输出来。如果客户端不支持Cookie,则会将用户Session的id重写到URL中。

  注意:TOMCAT判断客户端浏览器是否支持Cookie的依据是请求中是否含有Cookie。尽管客户端可能会支持Cookie,但是由于第一次请求时不会携带任何Cookie(因为并无任何Cookie可以携带),URL地址重写后的地址中仍然会带有jsessionid。当第二次访问时服务器已经在浏览器中写入Cookie了,因此URL地址重写后的地址中就不会带有jsessionid了。

参看博客:http://blog.csdn.net/axu_air/article/details/49302789

JSP中九大内置对象及对应的作用域为:
request 请求对象  类型 javax.servlet.ServletRequest 作用域:Request
session 会话对象 类型 javax.servlet.http.HttpSession 作用域:Session
application 应用程序对象 类型 javax.servlet.ServletContext 作用域:Application
response 响应对象 类型 javax.servlet.SrvletResponse 作用域:Page
pageContext 页面上下文对象 类型 javax.servlet.jsp.PageContext 作用域:Page
out 输出对象 类型 javax.servlet.jsp.JspWriter 作用域:Page
config 配置对象 类型 javax.servlet.ServletConfig 作用域:Page
page 页面对象 类型 javax.lang.Object 作用域:Page
exception 例外对象 类型 javax.lang.Throwable 作用域:page

1、如果把变量放到pageContext里,就说明它的作用域是page,它的有效范围只在当前jsp页面里。
从把变量放到pageContext开始,到jsp页面结束,你都可以使用这个变量。
2、如果把变量放到request里,就说明它的作用域是request,它的有效范围是当前请求周期。
所谓请求周期,就是指从http请求发起,到服务器处理结束,返回响应的整个过程。在这个过程中可能使用forward的方式跳转了多
个jsp页面,在这些页面里你都可以使用这个变量。
3、如果把变量放到session里,就说明它的作用域是session,它的有效范围是当前会话。
所谓当前会话,就是指从用户打开浏览器开始,到用户关闭浏览器这中间的过程。这个过程可能包含多个请求响应。也就是说,只
要用户不关浏览器,服务器就有办法知道这些请求是一个人发起的,整个过程被称为一个会话(session),而放到会话中的变量,
就可以在当前会话的所有请求里使用。
4、如果把变量放到application里,就说明它的作用域是application,它的有效范围是整个应用。
整个应用是指从应用启动,到应用结束。我们没有说“从服务器启动,到服务器关闭”,是因为一个服务器可能部署多个应用,当
然你关闭了服务器,就会把上面所有的应用都关闭了。
application作用域里的变量,它们的存活时间是最长的,如果不进行手工删除,它们就一直可以使用。
与上述三个不同的是,application里的变量可以被所有用户共用。如果用户甲的操作修改了application中的变量,用户乙访问时
得到的是修改后的值。这在其他scope中都是不会发生的,page, request, session都是完全隔离的,无论如何修改都不会影响其他
人的数据。
以下四种情况,session以及其中的数据便会清空:
1、用户关闭当前正在使用的浏览器;
2、关闭服务器;
3、用户未向服务器提出请求超过预设的时间,Tomcat服务器预设为30min;
4、运行程序结束session。

相当的经典:

JSP的九大内置对象和四个作用域

摘要: JSP的九大内置对象: page,application,session,request,response,out,exception,config,pageContext. JSP的四个作用域:application,session,request,page.

//附上jsp转换成servlet后的java代码

package org.apache.jsp;

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

public final class index_jsp extends org.apache.jasper.runtime.HttpJspBase
    implements org.apache.jasper.runtime.JspSourceDependent {


   int count = 0;
   
   int getCount(){
   int num = 100;
   return num = 100*count;
   
   }
   
    
  private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();

  private static java.util.List _jspx_dependants;

  private javax.el.ExpressionFactory _el_expressionfactory;
  private org.apache.AnnotationProcessor _jsp_annotationprocessor;

  public Object getDependants() {
    return _jspx_dependants;
  }

  public void _jspInit() {
    _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
    _jsp_annotationprocessor = (org.apache.AnnotationProcessor) getServletConfig().getServletContext().getAttribute(org.apache.AnnotationProcessor.class.getName());
  }

  public void _jspDestroy() {
  }

  public void _jspService(HttpServletRequest request, HttpServletResponse response)
        throws java.io.IOException, ServletException {

    PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    JspWriter _jspx_out = null;
    PageContext _jspx_page_context = null;


    try {
      response.setContentType("text/html;charset=ISO-8859-1");
      pageContext = _jspxFactory.getPageContext(this, request, response,
                  null, true, 8192, true);
      _jspx_page_context = pageContext;
      application = pageContext.getServletContext();
      config = pageContext.getServletConfig();
      session = pageContext.getSession();
      out = pageContext.getOut();
      _jspx_out = out;

      out.write('\r');
      out.write('\n');

String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

      out.write("\r\n");
      out.write("\r\n");
      out.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\r\n");
      out.write("<html>\r\n");
      out.write("  <head>\r\n");
      out.write("    <base href=\"");
      out.print(basePath);
      out.write("\">\r\n");
      out.write("    \r\n");
      out.write("    <title>My JSP 'index.jsp' starting page</title>\r\n");
      out.write("\t<meta http-equiv=\"pragma\" content=\"no-cache\">\r\n");
      out.write("\t<meta http-equiv=\"cache-control\" content=\"no-cache\">\r\n");
      out.write("\t<meta http-equiv=\"expires\" content=\"0\">    \r\n");
      out.write("\t<meta http-equiv=\"keywords\" content=\"keyword1,keyword2,keyword3\">\r\n");
      out.write("\t<meta http-equiv=\"description\" content=\"This is my page\">\r\n");
      out.write("  </head>\r\n");
      out.write("  \r\n");
      out.write("  <body>\r\n");
      out.write("  ");

      
  
   
      out.write("\r\n");
      out.write("   \r\n");
      out.write("   ");
      out.write("\r\n");
      out.write("  \r\n");
      out.write("  ");
      out.print(++count );
      out.write("\r\n");
      out.write("  ");
      out.print( getCount() );
      out.write("\r\n");
      out.write("  <form action=\"test.do\" method=\"post\">\r\n");
      out.write("  <select name =\"color\">\r\n");
      out.write("  <option>White</option>\r\n");
      out.write("  <option>Red</option>\r\n");
      out.write("  <option>Yellow</option>\r\n");
      out.write("  <option>Blue</option>\r\n");
      out.write("  </select>\r\n");
      out.write("  \r\n");
      out.write("  <input type=\"checkbox\" name=\"hobby\" value=\"football\">football<br>\r\n");
      out.write("  <input type=\"checkbox\" name=\"hobby\" value=\"football\">basketball<br>\r\n");
      out.write("  <input type=\"checkbox\" name=\"hobby\" value=\"football\">baseball<br>\r\n");
      out.write("  \r\n");
      out.write("  <input type=\"submit\">\r\n");
      out.write("  </form>\r\n");
      out.write("  </body>\r\n");
      out.write("</html>\r\n");
    } catch (Throwable t) {
      if (!(t instanceof SkipPageException)){
        out = _jspx_out;
        if (out != null && out.getBufferSize() != 0)
          try { out.clearBuffer(); } catch (java.io.IOException e) {}
        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
      }
    } finally {
      _jspxFactory.releasePageContext(_jspx_page_context);
    }
  }
}
在生成的java文件中,产生了
PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    JspWriter _jspx_out = null;
    PageContext _jspx_page_context = null;
对应的内置对象
 

application作用域就是服务器启动到关闭的整段时间,在这个作用域内设置的信息可以被所有应用程序使用。application作用域上的信息传递是通过ServletContext实现的.

session作用域比较容易理解,同一浏览器对服务器进行多次访问,在这多次访问之间传递信息,就是session作用域的体现,

 一个HTTP请求的处理可能需要多个Servlet合作,而这几个Servlet之间可以通过某种方式传递信息,但这个信息在请求结束后就无效了。Servlet之间的信息共享是通过HttpServletRequest接口的两个方法来实现的。

page对象的作用范围仅限于用户请求的当前页面,对于page对象的引用将在响应返回给客户端之后被释放,或者在请求被转发到其他地方后被释放。对page对象的引用通常存储在pageContext对象中。

 看博客:https://my.oschina.net/u/617909/blog/323527

 我们来重点研究下jsp的out对象

我们来看下面的这个代码:

输出的结果是 123 abc 首先将abc写到jsp的缓存区中,repone.getwrote直接将123输出到浏览器,当jsp页面执行完成的时候,将jsp缓存区中的abc输出给浏览器

buffer就是设置缓存区的大小

pageContext对象在自定义标签中经常使用

上面中在Page作用域中没有存储message数据,所以获得为null,在jsp中如果没有指定作用域的范围,默认存储在page作用域中

四个作用域存储数据:

四个作用域中取出数据:

经典案例2:

我们在1.jsp中存储上面的四个作用域对象,然后再1.jsp中转发到2.jsp中,在2.jsp中获得对应的四个作用域对象

在2.jsp中获得的page作用域的值为null,当1.jsp转发的时候page对象的作用域就是当前jsp页面。消失了之后在2.jsp无法获得1.jsp中设置的属性值

1.jsp和2.jsp因为是转发使用的是同一个request对象,所以2.jsp可以获得1.jsp中设置的request属性值

session对象的作用域是只要在一次会话中浏览器没有被关闭,都可以获得session中属性值

context的作用域是当前的应用程序,只要tomcat服务器没有被关闭都可以获得属性值

 

 

经典案例3:

我们在1.jsp中存储上面的四个作用域对象,然后再1.jsp中重定向到2.jsp中,在2.jsp中获得对应的四个作用域对象

 

在2.jsp中获得的page作用域的值为null,当1.jsp转发的时候page对象的作用域就是当前jsp页面。消失了之后在2.jsp无法获得1.jsp中设置的属性值

1.jsp和2.jsp因为是重定向,客户端发起了两次请求,两次请求使用的不同的request对象,所以2.jsp无法获得1.jsp中设置的request属性值

session对象的作用域是只要在一次会话中浏览器没有被关闭,都可以获得session中属性值

context的作用域是当前的应用程序,只要tomcat服务器没有被关闭都可以获得属性值

 

没有jsp之前,如要要返回html页面给浏览器,需要在servlet中使用代码封装html页面。当有了jsp之后,我们在servlet 中把数据保存到作用域对象中,然后跳转到jsp,由jsp将页面返回给浏览器。

 

使用动作标签替换了上面的request转发的java代码

使用jsp转发的时候传递参数

动态包含:

上面这种方式为动态包含:

下面的这种方式是静态包含的关系:

动态包含会将1.jsp和head.jsp先翻译生成两个java文件,在运行的时候加载包含的java文件

静态包含会将jsp代码合并成一个jsp文件,在翻译,最终只有一个java文件

当value为null的时候,使用out标签可以使用默认值

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!