一、什么是jsp?
jsp全稱是java server pages,它和servle技術一樣,都是sun公司定義的一種用于開發動態web資源的技術。
jsp這門技術的最大的特點在于,寫jsp就像在寫html,但它相比html而言,html只能為用戶提供靜態數據,而jsp技術允許在頁面中嵌套java代碼,為用戶提供動態數據。
二、jsp原理
2.1、web服務器是如何調用并執行一個jsp頁面的?
瀏覽器向服務器發請求,不管訪問的是什么資源,其實都是在訪問servlet,所以當訪問一個jsp頁面時,其實也是在訪問一個servlet,服務器在執行jsp的時候,首先把jsp翻譯成一個servlet,所以我們訪問jsp時,其實不是在訪問jsp,而是在訪問jsp翻譯過后的那個servlet,例如下面的代碼:
index.jsp
<%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <% string path = request.getcontextpath(); string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/"; %> <!doctype html public "-//w3c//dtd html 4.01 transitional//en"> <html> <head> <base href="<%=basepath%>" rel="external nofollow" > <title>first jsp</title> </head> <body> <% out.print("hello jsp"); %> </body> </html>
當我們通過瀏覽器訪問index.jsp時,服務器首先將index.jsp翻譯成一個index_jsp.class,在tomcat服務器的work\catalina\localhost\項目名\org\apache\jsp目錄下可以看到index_jsp.class的源代碼文件index_jsp.java,index_jsp.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 { 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=utf-8"); 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>first jsp</title>\r\n"); out.write("\t\r\n"); out.write(" </head>\r\n"); out.write(" \r\n"); out.write(" <body>\r\n"); out.write(" "); out.print("hello jsp"); out.write("\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); } } }
我們可以看到,index_jsp這個類是繼承 org.apache.jasper.runtime.httpjspbase這個類的,通過查看tomcat服務器的源代碼,可以知道在apache-tomcat-6.0.20-src\java\org\apache\jasper\runtime目錄下存httpjspbase這個類的源代碼文件,如下圖所示:
我們可以看看httpjsbase這個類的源代碼,如下所示:
/* * licensed to the apache software foundation (asf) under one or more * contributor license agreements. see the notice file distributed with * this work for additional information regarding copyright ownership. * the asf licenses this file to you under the apache license, version 2.0 * (the "license"); you may not use this file except in compliance with * the license. you may obtain a copy of the license at * * http://www.apache.org/licenses/license-2.0 * * unless required by applicable law or agreed to in writing, software * distributed under the license is distributed on an "as is" basis, * without warranties or conditions of any kind, either express or implied. * see the license for the specific language governing permissions and * limitations under the license. */ package org.apache.jasper.runtime; import java.io.ioexception; import javax.servlet.servletconfig; import javax.servlet.servletexception; import javax.servlet.http.httpservlet; import javax.servlet.http.httpservletrequest; import javax.servlet.http.httpservletresponse; import javax.servlet.jsp.httpjsppage; import javax.servlet.jsp.jspfactory; import org.apache.jasper.compiler.localizer; /** * this is the super class of all jsp-generated servlets. * * @author anil k. vijendran */ public abstract class httpjspbase extends httpservlet implements httpjsppage { protected httpjspbase() { } public final void init(servletconfig config) throws servletexception { super.init(config); jspinit(); _jspinit(); } public string getservletinfo() { return localizer.getmessage("jsp.engine.info"); } public final void destroy() { jspdestroy(); _jspdestroy(); } /** * entry point into service. */ public final void service(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { _jspservice(request, response); } public void jspinit() { } public void _jspinit() { } public void jspdestroy() { } protected void _jspdestroy() { } public abstract void _jspservice(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception; }
httpjspbase類是繼承httpservlet的,所以httpjspbase類是一個servlet,而index_jsp又是繼承httpjspbase類的,所以index_jsp類也是一個servlet,所以當瀏覽器訪問服務器上的index.jsp頁面時,其實就是在訪問index_jsp這個servlet,index_jsp這個servlet使用_jspservice這個方法處理請求。
2.2、jsp頁面中的html排版標簽是如何被發送到客戶端的?
瀏覽器接收到的這些數據
<!doctype html public "-//w3c//dtd html 4.01 transitional//en"> <html> <head> <base href="http://localhost:8080/javaweb_jsp_study_20140603/" rel="external nofollow" > <title>first jsp</title> </head> <body> hello jsp </body> </html>
都是在_jspservice方法中使用如下的代碼輸出給瀏覽器的:
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>first jsp</title>\r\n"); out.write("\t\r\n"); out.write(" </head>\r\n"); out.write(" \r\n"); out.write(" <body>\r\n"); out.write(" "); out.print("hello jsp"); out.write("\r\n"); out.write(" </body>\r\n"); out.write("</html>\r\n");
在jsp中編寫的java代碼和html代碼都會被翻譯到_jspservice方法中去,在jsp中編寫的java代碼會原封不動地翻譯成java代碼,如<%out.print("hello jsp");%>直接翻譯成out.print("hello jsp");,而html代碼則會翻譯成使用out.write("<html標簽>\r\n");的形式輸出到瀏覽器。在jsp頁面中編寫的html排版標簽都是以out.write("<html標簽>\r\n");的形式輸出到瀏覽器,瀏覽器拿到html代碼后才能夠解析執行html代碼。
2.3、jsp頁面中的java代碼服務器是如何執行的?
在jsp中編寫的java代碼會被翻譯到_jspservice方法中去,當執行_jspservice方法處理請求時,就會執行在jsp編寫的java代碼了,所以jsp頁面中的java代碼服務器是通過調用_jspservice方法處理請求時執行的。
2.4、web服務器在調用jsp時,會給jsp提供一些什么java對象?
查看_jspservice方法可以看到,web服務器在調用jsp時,會給jsp提供如下的8個java對象
pagecontext pagecontext; httpsession session; servletcontext application; servletconfig config; jspwriter out; object page = this; httpservletrequest request, httpservletresponse response
其中page對象,request和response已經完成了實例化,而其它5個沒有實例化的對象通過下面的方式實例化
pagecontext = _jspxfactory.getpagecontext(this, request, response,null, true, 8192, true); application = pagecontext.getservletcontext(); config = pagecontext.getservletconfig(); session = pagecontext.getsession(); out = pagecontext.getout();
這8個java對象在jsp頁面中是可以直接使用的,如下所示:
<% session.setattribute("name", "session對象");//使用session對象,設置session對象的屬性 out.print(session.getattribute("name")+"<br/>");//獲取session對象的屬性 pagecontext.setattribute("name", "pagecontext對象");//使用pagecontext對象,設置pagecontext對象的屬性 out.print(pagecontext.getattribute("name")+"<br/>");//獲取pagecontext對象的屬性 application.setattribute("name", "application對象");//使用application對象,設置application對象的屬性 out.print(application.getattribute("name")+"<br/>");//獲取application對象的屬性 out.print("hello jsp"+"<br/>");//使用out對象 out.print("服務器調用index.jsp頁面時翻譯成的類的名字是:"+page.getclass()+"<br/>");//使用page對象 out.print("處理請求的servlet的名字是:"+config.getservletname()+"<br/>");//使用config對象 out.print(response.getcontenttype()+"<br/>");//使用response對象 out.print(request.getcontextpath()+"<br/>");//使用request對象 %>
運行結果如下:
2.5、jsp最佳實踐
jsp最佳實踐就是jsp技術在開發中該怎么去用。
不管是jsp還是servlet,雖然都可以用于開發動態web資源。但由于這2門技術各自的特點,在長期的軟件實踐中,人們逐漸把servlet作為web應用中的控制器組件來使用,而把jsp技術作為數據顯示模板來使用。其原因為,程序的數據通常要美化后再輸出:讓jsp既用java代碼產生動態數據,又做美化會導致頁面難以維護。讓servlet既產生數據,又在里面嵌套html代碼美化數據,同樣也會導致程序可讀性差,難以維護。因此最好的辦法就是根據這兩門技術的特點,讓它們各自負責各的,servlet只負責響應請求產生數據,并把數據通過轉發技術帶給jsp,數據的顯示jsp來做。
2.6、tomcat服務器的執行流程
第一次執行:
第二次執行:
因為已經存在了*.class文件,所以不在需要轉換和編譯的過程
修改后執行:
1.源文件已經被修改過了,所以需要重新轉換,重新編譯。
到此這篇關于jsp動態網頁開發原理詳解的文章就介紹到這了,更多相關jsp動態網頁開發原理內容請搜索碩編程以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持碩編程!
- jsp+servlet實現文件上傳與下載功能
- EJB3.0部署消息驅動Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數位數方法
- 秒殺系統Web層設計的實現方法
- 將properties文件的配置設置為整個Web應用的全局變量實現方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁面中動態生成圖片驗證碼的方法實例
- 詳解JSP 內置對象request常見用法
- 使用IDEA編寫jsp時EL表達式不起作用的問題及解決方法
- jsp實現局部刷新頁面、異步加載頁面的方法
- Jsp中request的3個基礎實踐
- JavaServlet的文件上傳和下載實現方法
- JSP頁面的靜態包含和動態包含使用方法