JSP运行原理及优势(4)
final javax.servlet.ServletContext application;
final javax.servlet.ServletConfig config;
javax.servlet.jsp.JspWriter out = null;
final java.lang.Object page = this;
javax.servlet.jsp.JspWriter _jspx_out = null;
javax.servlet.jsp.PageContext _jspx_page_context = null;
try {
response.setContentType("text/html;charset=gb2312");
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\n");
out.write("<html>\r\n");
out.write(" <head>\r\n");
out.write(" <title>简单JSP页面示例</title>\r\n");
out.write(" </head>\r\n");
out.write("<body>\r\n");
out.write(" 这是一个简单的 JSP页面示例 <br>\r\n");
out.write(" </body>\r\n");
out.write("</html>\r\n");
} catch (java.lang.Throwable t) {
if (!(t instanceof javax.servlet.jsp.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代码,如果你用的服务器为Tomcat那么这个Java代码所在的位置为Tomcat(我的版本为7.0)目录下的work\Catalina\localhost\你的项目名字\org\apache\jsp中。在这个目录下应该有两个对应的文件,一个是class文件一个是java文件。
上面这段程序本质就是一个servelet,它把所有页面的显示内容都用out对象打印出来,包括每个HTML标签,所以说JSP页面本质上就是Servelet的一种化身,在JSP程序中离不开Servelet的影子。这段代码的具体语法可以不必深究,这些工作都是由服务器中的JSP编译器来完成,这个过程是自动完成的,无需手动干预。
相关新闻>>
- 发表评论
-
- 最新评论 更多>>