精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

JSP動態網頁開發技術概述

  在動態web項目的開發中,經常需要動態生成html內容(如系統中的當前在線人數需要動態生成)。如果使用servlet實現html頁面數據的統計,則需要使用大量的輸出語句。同時,如果靜態內容和動態內容混合在一起,那么也將導致程序非常臃腫。為了客服servlet的這些缺點,oracle(sun)公司推出了jsp技術。

1.jsp概述

  jsp(java server pages)是建立在servlet規范之上的動態網頁開發技術,其實質是一個簡化的servlet。在jsp文件中,html和java代碼共同存在,其中,html代碼用于實現網頁中靜態內容的顯示,java代碼用于實現網頁中動態內容的實現。為了和傳統的html有所區別,jsp文件擴展名為jap。

  jsp技術所開發的web應用程序是基于java的,其具有以下特征:

 ?。?)預編譯

  預編譯指在用戶第一次通過瀏覽器訪問jsp頁面時,服務器將對jsp頁面代碼進行編譯,并且僅指向一次編譯。編譯好的代碼將被保存,在用戶下一次訪問時會直接執行編譯好的代碼。這樣不僅節約了服務器的cpu資源,還大幅度提升了客戶端的訪問速度。

  (2)業務代碼相分離

  在使用jsp技術開發web應用時,可以將界面的開發和應用程序的開發分離。

  (3)組件重用

  jsp可以使用javabean編寫業務組件,也就是使用一個javabean類封裝業務處理代碼或者將其作為一個數據存儲模型,在jsp頁面甚至整個項目中,都可以重復使用這個javabean,同時,javabean也可以應用帶其他java應用程序中。

  (4)跨平臺

  由于jsp是基于java語言的,它可以使用java api,所有它也是跨平臺的,可以應用與不同的系統,如windows和linux。

jsp 運行原理

  jsp的工作模式是請求/響應模式,客戶端首先發出http請求,jsp程序收到請求后將進行處理并返回處理結果。在一個jsp文件第一次請求時,jsp引擎(容器)把該jsp文件轉化成一個servlet,而這個引擎本身也是一個servlet。

  jsp運行過程:
 ?。?)客戶端發出請求,請求訪問jsp文件。

  (2)jsp容器先將jsp文件轉化成一個java源文件(java servlet源程序),在轉換過程中,如果發現jsp文件存在任何語法錯誤,則中斷轉換過程,并向服務器和客戶端返回出錯信息。

  (3)如果轉換成功,則jsp容器會將生成的java源文件編譯成相應的字節碼文件*.class。該class文件就是一個servlet,servlet容器會像處理其他servlet一樣處理它。

 ?。?)有servlet容器加載轉換后的servlet類(class文件)創建該servlet(jsp頁面的轉換結果)的實例,并執行servlet的jspinit()方法。jspinit()方法在servlet的整個生命周期只會執行一次。

 ?。?)執行jspservice()方法處理客戶端的請求。對于每一個請求,jsp容器都會創建一個新的線程處理它。如果多個客戶端同時請求該jsp文件,則jsp容器會創建多個線程,使每一個客戶端請求都對應一個線程。

 ?。?)如果jsp文件被修改了,則服務器將根據設置決定是否對該文件重新進行編譯,如果需要重新編譯,則使用重新編譯后的結果取代內存中的servlet,并繼續上述處理過程。需要注意的是,雖然jsp效率很高,但在第一次調用時往往需要轉換和編譯,所以會產生一些輕微的延遲。

  (7)如果系統出現資源不足等問題,jsp容器可能會以某種不確定的方式將servlet從內存中移除,發生這種情況時,首先會調用jspdestroy()方法,然后servlet實例會被作為垃圾進行處理。

 ?。?)當請求處理完成后,響應對象由jsp容器接收,并將html格式的響應信息送回客戶端。

  因此:瀏覽器向服務器發送請求,不管訪問的是什么資源啊,其實都是在訪問servlet,所有當訪問一個jsp頁面時,其實也是在訪問一個servlet,服務器在執行jsp的時候,首先把jsp翻譯成一個servlet,所有訪問jsp時,其實不是在訪問jsp,而是在訪問jsp翻譯過后的那個servlet。例如:

c1.jsp

<%@ page language="java" contenttype="text/html; charset=utf-8"
 pageencoding="utf-8"%>
<!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=iso-8859-1">
<title>insert title here</title>
</head>
<body>
 this is my first jsp
 <%
  out.print("你好啊c1");
  %>
</body>
</html>

當我們通過瀏覽器(http://localhost:8080/day11_01_jsp(項目名稱)/c1.jsp)訪問c1.jsp時,服務器首先將c1.jsp翻譯成一個c1_jsp.class,在tomcat服務器的work\catalina\localhost\項目名\org\apache\jsp目錄下可以看到c1_jsp.class的源代碼。(1.jsp翻譯成_1_jsp.class)

c1_jap.java的代碼:

/*
 * generated by the jasper component of apache tomcat
 * version: apache tomcat/7.0.52
 * generated at: 2018-10-05 08:32:50 utc
 * note: the last modified time of this file was set to
 *  the last modified time of the source file after
 *  generation to assist with modification tracking.
 */
package org.apache.jsp;

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

public final class c1_jsp extends org.apache.jasper.runtime.httpjspbase
 implements org.apache.jasper.runtime.jspsourcedependent {

 private static final javax.servlet.jsp.jspfactory _jspxfactory =
   javax.servlet.jsp.jspfactory.getdefaultfactory();

 private static java.util.map<java.lang.string,java.lang.long> _jspx_dependants;

 private javax.el.expressionfactory _el_expressionfactory;
 private org.apache.tomcat.instancemanager _jsp_instancemanager;

 public java.util.map<java.lang.string,java.lang.long> getdependants() {
 return _jspx_dependants;
 }

 public void _jspinit() {
 _el_expressionfactory = _jspxfactory.getjspapplicationcontext(getservletconfig().getservletcontext()).getexpressionfactory();
 _jsp_instancemanager = org.apache.jasper.runtime.instancemanagerfactory.getinstancemanager(getservletconfig());
 }

 public void _jspdestroy() {
 }

 public void _jspservice(final javax.servlet.http.httpservletrequest request, final javax.servlet.http.httpservletresponse response)
  throws java.io.ioexception, javax.servlet.servletexception {

 final javax.servlet.jsp.pagecontext pagecontext;
 javax.servlet.http.httpsession session = null;
 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=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\n");
  out.write("<!doctype html public \"-//w3c//dtd html 4.01 transitional//en\" \"http://www.w3.org/tr/html4/loose.dtd\">\r\n");
  out.write("<html>\r\n");
  out.write("<head>\r\n");
  out.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\r\n");
  out.write("<title>insert title here</title>\r\n");
  out.write("</head>\r\n");
  out.write("<body>\r\n");
  out.write("\tthis is my first jsp \r\n");
  out.write("\t");

  out.print("你好啊c1");

  out.write("\r\n");
  out.write("</body>\r\n");
  out.write("</html>");
 } 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);
  else throw new servletexception(t);
  }
 } finally {
  _jspxfactory.releasepagecontext(_jspx_page_context);
 }
 }
}

  我們可以看到,c1_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 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 {

 private static final long serialversionuid = 1l;

 protected httpjspbase() {
 }

 @override
 public final void init(servletconfig config)
  throws servletexception
 {
  super.init(config);
  jspinit();
  _jspinit();
 }

 @override
 public string getservletinfo() {
  return localizer.getmessage("jsp.engine.info");
 }

 @override
 public final void destroy() {
  jspdestroy();
  _jspdestroy();
 }

 /**
  * entry point into service.
  */
 @override
 public final void service(httpservletrequest request, httpservletresponse response)
  throws servletexception, ioexception
 {
  _jspservice(request, response);
 }

 @override
 public void jspinit() {
 }

 public void _jspinit() {
 }

 @override
 public void jspdestroy() {
 }

 protected void _jspdestroy() {
 }

 @override
 public abstract void _jspservice(httpservletrequest request,
          httpservletresponse response)
  throws servletexception, ioexception;
}

  httpjspbase類是繼承httpservlet的,所以httpjspbase類是一個servlet,而c1_jsp又是繼承httpjspbase類的,所以c1_jsp類也是一個servlet,所以當瀏覽器訪問服務器上的c1.jsp頁面時,其實就是在訪問c1_jsp這個servlet,c1_jsp這個servlet使用_jspservice這個方法處理請求。

2.jsp的基本語法

2.1 jsp模板元素

  網頁的靜態內容。如:html標簽和文本。

2.2 jsp腳本元素

(1)jsp scriptlets(腳本片斷)用于在jsp頁面中編寫多行java代碼。語法:

<%
 java代碼(變量、方法、表達式等 )
%>
<%
 int sum=0;//聲明變量
 /*編寫語句*/
 for (int i=1;i<=100;i++){
  sum+=i;
 }
 out.println("<h1>sum="+sum+"</h1>");
%>

jsp腳本片斷中只能出現java代碼,不能出現其它模板元素, jsp引擎在翻譯jsp頁面中,會將jsp腳本片斷中的java代碼將被原封不動地放到servlet的_jspservice方法中。jsp腳本片斷中的java代碼必須嚴格遵循java語法,例如,每執行語句后面必須用分號(;)結束。在一個jsp頁面中可以有多個腳本片斷,在兩個或多個腳本片斷之間可以嵌入文本、html標記和其他jsp元素。多個腳本片斷中的代碼可以相互訪問,猶如將所有的代碼放在一對<%%>之中的情況。如:out.println(x);單個腳本片斷中的java語句可以是不完整的,但是,多個腳本片斷組合后的結果必須是完整的java語句。

<%
 for (int i=1; i<5; i++) 
 {
%>
 <h1>http://localhost:8080/javaweb_jsp_study_20140603/</h1>
<%
 }
%>

(2)jsp聲明

  jsp頁面中編寫的所有代碼,默認會翻譯到servlet的service方法中,而jsp聲明中的java代碼會被翻譯到_jspservice方法外面。

<%!
 java代碼:定義變量或者方法
%>

  多個靜態代碼塊、變量和方法可以定義在一個jsp文件中,也可以分別單獨定義在多個jsp聲明中。

  jsp隱式對象的作用范圍僅限于servlet的_japservice方法。所以在jsp聲明中不能使用這些隱式對象。

jsp聲明案例:

<%!
static {
 system.out.println("loading servlet!");
}

private int globalvar = 0;

public void jspinit(){
 system.out.println("initializing jsp!");
}
%>

<%!
public void jspdestroy(){
 system.out.println("destroying jsp!");
}
%>

(3)jsp 表達式

  jsp腳本表達式(expression)用于將程序數據輸出到客戶端,他將要輸出的變量或者表達式直接封裝在以<%= %>標記中,語法為:

<%=expression%>

舉例:輸出當前系統時間:

<%= new java.util.date() %> 

  jsp引擎在翻譯腳本表達式時,會將程序數據轉成字符串,然后在相應位置用out.print(...)將數據輸給客戶端。

  jsp腳本表達式的變量或者表達式后不能有分號(;)。

3.jsp注釋

 ?。?)顯式注釋:直接使用html風格的注釋:<!- - 注釋內容- -> 特點:不安全,費流量;html的注釋在瀏覽器中查看源文件的時候是可以看得到的

 ?。?)隱式注釋:直接使用java的注釋://、/*……*/

 jsp自己的注釋:<%- - 注釋內容- -%> 特點:安全,省流量

java注釋和jsp注釋在瀏覽器中查看源文件時是看不到注釋的內容的

<!--這個注釋可以看見-->

<%
 //java中的單行注釋

 /*
  java中的多行注釋
 */
%>

<%
--jsp自己的注釋--%>

參考:

#

#

到此這篇關于jsp動態網頁開發技術概述的文章就介紹到這了,更多相關jsp動態網頁內容請搜索碩編程以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持碩編程!

相關文章