标签:
1:IE浏览器中输入http://localhost/demo/index.jsp |
2:IE浏览器默认找servlet,输入index.jsp请求后,jsp引擎会把jsp翻译为 Servlet,保存在tomcat/work/.../index_jsp.java中,在编译为字节码到内存 |
Servlet调用service()方法,对jsp页面进行处理输出到IE 调用service()方法时,里面定义了9大内置对象供jsp调用 1:Request 5:Config 2:Response 6:Out 7:Page 3:Session 8:PageContext 4:Application 9:Exception
|
标签:
原文地址:http://www.cnblogs.com/linhong/p/4392842.html