版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、<p><b> JSP基礎(chǔ)學(xué)習(xí)資料</b></p><p> 一、 JSP 技術(shù)概述 </p><p> 在 Sun 正式發(fā)布 JSP(JavaServer Pages) 之后,這種新的 Web 應(yīng)用開發(fā)技術(shù)很快引起了人們的關(guān)注。 JSP 為創(chuàng)建高度動態(tài)的 Web 應(yīng)用提供了一個獨特的開發(fā)環(huán)境。按照 Sun 的說法, JSP 能夠適應(yīng)市場上包括 Ap
2、ache WebServer 、 IIS4.0 在內(nèi)的 85% 的服務(wù)器產(chǎn)品。即使您對 ASP “一往情深”,我們認(rèn)為,關(guān)注 JSP 的發(fā)展仍舊很有必要。 </p><p> ?、?JSP 與 ASP 的簡單比較 </p><p> JSP 與 Microsoft 的 ASP 技術(shù)非常相似。兩者都提供在 HTML 代碼中混合某種程序代碼、由語言引擎解釋執(zhí)行程序代碼的能力。在 ASP 或
3、JSP 環(huán)境下, HTML 代碼主要負(fù)責(zé)描述信息的顯示樣式,而程序代碼則用來描述處理邏輯。普通的 HTML 頁面只依賴于 Web 服務(wù)器,而 ASP 和 JSP 頁面需要附加的語言引擎分析和執(zhí)行程序代碼。程序代碼的執(zhí)行結(jié)果被重新嵌入到 HTML 代碼中,然后一起發(fā)送給瀏覽器。 ASP 和 JSP 都是面向 Web 服務(wù)器的技術(shù),客戶端瀏覽器不需要任何附加的軟件支持。 </p><p> ASP 的編程語言是 V
4、BScript 之類的腳本語言, JSP 使用的是 Java ,這是兩者最明顯的區(qū)別。此外, ASP 與 JSP 還有一個更為本質(zhì)的區(qū)別:兩種語言引擎用完全不同的方式處理頁面中嵌入的程序代碼。在 ASP 下, VBScript 代碼被 ASP 引擎解釋執(zhí)行;在 JSP 下,代碼被編譯成 Servlet 并由 Java 虛擬機(jī)執(zhí)行,這種編譯操作僅在對 JSP 頁面的第一次請求時發(fā)生。 </p><p><b&
5、gt; ?、孢\行環(huán)境 </b></p><p> Sun 公司的 JSP 主頁在 http://www.javasoft.com/products/jsp/index.html ,從這里還可以下載 JSP 規(guī)范,這些規(guī)范定義了供應(yīng)商在創(chuàng)建 JSP 引擎時所必須遵從的一些規(guī)則。 </p><p> 執(zhí)行 JSP 代碼需要在服務(wù)器上安裝 JSP 引擎。此處我們使用的是 Sun
6、的 JavaServer Web Development Kit ( JSWDK )。為便于學(xué)習(xí),這個軟件包提供了大量可供修改的示例。安裝 JSWDK 之后,只需執(zhí)行 startserver 命令即可啟動服務(wù)器。在默認(rèn)配置下服務(wù)器在端口 8080 監(jiān)聽,使用 http://localhost:8080 即可打開缺省頁面。 </p><p> 在運行 JSP 示例頁面之前,請注意一下安裝 JSWDK 的目錄,特別
7、是“ work ”子目錄下的內(nèi)容。執(zhí)行示例頁面時,可以在這里看到 JSP 頁面如何被轉(zhuǎn)換成 Java 源文件,然后又被編譯成 class 文件(即 Servlet )。 JSWDK 軟件包中的示例頁面分為兩類,它們或者是 JSP 文件,或者是包含一個表單的 HTML 文件,這些表單均由 JSP 代碼處理。與 ASP 一樣, JSP 中的 Java 代碼均在服務(wù)器端執(zhí)行。因此,在瀏覽器中使用“查看源文件”菜單是無法看到 JSP 源代碼的,
8、只能看到結(jié)果 HTML 代碼。所有示例的源代碼均通過一個單獨的“ examples ”頁面提供。 </p><p> ㈢ JSP 頁面示例 </p><p> 下面我們分析一個簡單的 JSP 頁面。您可以在 JSWDK 的 examples 目錄下創(chuàng)建另外一個目錄存放此文件,文件名字可以任意,但擴(kuò)展名必須為 .jsp 。從下面的代碼清單中可以看到, JSP 頁面除了比普通 HTML 頁
9、面多一些 Java 代碼外,兩者具有基本相同的結(jié)構(gòu)。 Java 代碼是通過 < % 和 %> 符號加入到 HTML 代碼中間的,它的主要功能是生成并顯示一個從 0 到 9 的字符串。在這個字符串的前面和后面都是一些通過 HTML 代碼輸出的文本。 </p><p><b> < HTML> </b></p><p> < HEAD&g
10、t;< TITLE>JSP 頁面 < /TITLE>< /HEAD> </p><p><b> < BODY> </b></p><p> < %@ page language="java" %> </p><p> < %! String str=&
11、quot;0"; %> </p><p> < % for (int i=1; i < 10; i++) { </p><p> str = str + i; </p><p><b> } %> </b></p><p> JSP 輸出之前。 </p><p
12、><b> < P> </b></p><p> < %= str %> </p><p><b> < P> </b></p><p> JSP 輸出之后。 </p><p><b> < /BODY> </b>
13、</p><p><b> < /HTML> </b></p><p> 這個 JSP 頁面可以分成幾個部分來分析。 </p><p> 首先是 JSP 指令。它描述的是頁面的基本信息,如所使用的語言、是否維持會話狀態(tài)、是否使用緩沖等。 JSP 指令由 < %@ 開始, %> 結(jié)束。在本例中,指令“ < %@
14、 page language="java" %> ”只簡單地定義了本例使用的是 Java 語言(當(dāng)前,在 JSP 規(guī)范中 Java 是唯一被支持的語言)。 </p><p> 接下來的是 JSP 聲明。 JSP 聲明可以看成是定義類這一層次的變量和方法的地方。 JSP 聲明由 < %! 開始, %> 結(jié)束。如本例中的“ < %! String str="0&
15、quot;; %> ”定義了一個字符串變量。在每一項聲明的后面都必須有一個分號,就象在普通 Java 類中聲明成員變量一樣。 </p><p> 位于 < % 和 %> 之間的代碼塊是描述 JSP 頁面處理邏輯的 Java 代碼,如本例中的 for 循環(huán)所示。 </p><p> 最后,位于 < %= 和 %> 之間的代碼稱為 JSP 表達(dá)式,如本例中的“
16、 < %= str %> ”所示。 JSP 表達(dá)式提供了一種將 JSP 生成的數(shù)值嵌入 HTML 頁面的簡單方法。 </p><p><b> 二、會話狀態(tài)管理 </b></p><p> 會話狀態(tài)維持是 Web 應(yīng)用開發(fā)者必須面對的問題。有多種方法可以用來解決這個問題,如使用 Cookies 、隱藏的表單輸入域,或直接將狀態(tài)信息附加到 URL 中。
17、Java Servlet 提供了一個在多個請求之間持續(xù)有效的會話對象,該對象允許用戶存儲和提取會話狀態(tài)信息。 JSP 也同樣支持 Servlet 中的這個概念。 </p><p> 在 Sun 的 JSP 指南 中可以看到許多有關(guān)隱含對象的說明(隱含的含義是,這些對象可以直接引用,不需要顯式地聲明,也不需要專門的代碼創(chuàng)建其實例)。例如 request 對象,它是 HttpServletRequest 的一個子類
18、。該對象包含了所有有關(guān)當(dāng)前瀏覽器請求的信息,包括 Cookies , HTML 表單變量等等。 session 對象也是這樣一個隱含對象。這個對象在第一個 JSP 頁面被裝載時自動創(chuàng)建,并被關(guān)聯(lián)到 request 對象上。與 ASP 中的會話對象相似, JSP 中的 session 對象對于那些希望通過多個頁面完成一個事務(wù)的應(yīng)用是非常有用的。 </p><p> 為說明 session 對象的具體應(yīng)用,接下來我
19、們用三個頁面模擬一個多頁面的 Web 應(yīng)用。第一個頁面( q1.html )僅包含一個要求輸入用戶名字的 HTML 表單,代碼如下: </p><p><b> < HTML> </b></p><p><b> < BODY> </b></p><p> < FORM METHOD=P
20、OST ACTION="q2.jsp"> </p><p><b> 請輸入您的姓名: </b></p><p> < INPUT TYPE=TEXT NAME="thename"> </p><p> < INPUT TYPE=SUBMIT VALUE="SUBM
21、IT"> </p><p><b> < /FORM> </b></p><p><b> < /BODY> </b></p><p><b> < /HTML> </b></p><p> 第二個頁面是一個 JSP
22、頁面( q2.jsp ),它通過 request 對象提取 q1.html 表單中的 thename 值,將它存儲為 name 變量,然后將這個 name 值保存到 session 對象中。 session 對象是一個名字 / 值對的集合,在這里,名字 / 值對中的名字為“ thename ”,值即為 name 變量的值。由于 session 對象在會話期間是一直有效的,因此這里保存的變量對后繼的頁面也有效。 q2.jsp 的另外一個任
23、務(wù)是詢問第二個問題。下面是它的代碼: </p><p><b> < HTML> </b></p><p><b> < BODY> </b></p><p> < %@ page language="java" %> </p><p>
24、 < %! String name=""; %> </p><p><b> < % </b></p><p> name = request.getParameter("thename"); </p><p> session.putValue("thename&qu
25、ot;, name); </p><p><b> %> </b></p><p> 您的姓名是: < %= name %> </p><p><b> < p> </b></p><p> < FORM METHOD=POST ACTION="
26、q3.jsp"> </p><p><b> 您喜歡吃什么 ? </b></p><p> < INPUT TYPE=TEXT NAME="food"> </p><p><b> < P> </b></p><p> < I
27、NPUT TYPE=SUBMIT VALUE="SUBMIT"> </p><p><b> < /FORM> </b></p><p><b> < /BODY> </b></p><p><b> < /HTML> </b><
28、;/p><p> 第三個頁面也是一個 JSP 頁面( q3.jsp ),主要任務(wù)是顯示問答結(jié)果。它從 session 對象提取 thename 的值并顯示它,以此證明雖然該值在第一個頁面輸入,但通過 session 對象得以保留。 q3.jsp 的另外一個任務(wù)是提取在第二個頁面中的用戶輸入并顯示它: </p><p><b> < HTML> </b>&l
29、t;/p><p><b> < BODY> </b></p><p> < %@ page language="java" %> </p><p> < %! String food=""; %> </p><p><b> <
30、; % </b></p><p> food = request.getParameter("food"); </p><p> String name = (String) session.getValue("thename"); </p><p><b> %> </b><
31、;/p><p> 您的姓名是: < %= name %> </p><p><b> < P> </b></p><p> 您喜歡吃: < %= food %> </p><p><b> < /BODY> </b></p><
32、p><b> < /HTML> </b></p><p> 三、引用 JavaBean 組件 </p><p> JavaBean 是一種基于 Java 的軟件組件。 JSP 對于在 Web 應(yīng)用中集成 JavaBean 組件提供了完善的支持。這種支持不僅能縮短開發(fā)時間(可以直接利用經(jīng)測試和可信任的已有組件,避免了重復(fù)開發(fā)),也為 JSP 應(yīng)用
33、帶來了更多的可伸縮性。 JavaBean 組件可以用來執(zhí)行復(fù)雜的計算任務(wù),或負(fù)責(zé)與數(shù)據(jù)庫的交互以及數(shù)據(jù)提取等。如果我們有三個 JavaBean ,它們分別具有顯示新聞、股票價格、天氣情況的功能,則創(chuàng)建包含所有這三種功能的 Web 頁面只需要實例化這三個 Bean ,使用 HTML 表格將它們依次定位就可以了。 </p><p> 為說明在 JSP 環(huán)境下 JavaBean 的應(yīng)用,我們創(chuàng)建了一個名為 TaxRa
34、te 的 Bean 。它有兩個屬性,即 Product (產(chǎn)品)和 Rate (稅率)。兩個 set 方法分別用來設(shè)置這兩個屬性,兩個 get 方法則用于提取這兩個屬性。在實際應(yīng)用中,這種 Bean 一般應(yīng)當(dāng)從數(shù)據(jù)庫提取稅率值,此處我們簡化了這個過程,允許任意設(shè)定稅率。下面是這個 Bean 的代碼清單: </p><p> package tax; </p><p> public c
35、lass TaxRate { </p><p> String Product; </p><p> double Rate; </p><p> public TaxRate() { </p><p> this.Product = "A001"; </p><p> this.Rate
36、 = 5; </p><p><b> } </b></p><p> public void setProduct (String ProductName) { </p><p> this.Product = ProductName; </p><p><b> } </b></p
37、><p> public String getProduct() { </p><p> return (this.Product); </p><p><b> } </b></p><p> public void setRate (double rateValue) { </p><p>
38、; this.Rate = rateValue; </p><p><b> } </b></p><p> public double getRate () { </p><p> return (this.Rate); </p><p><b> } </b></p>&
39、lt;p><b> } </b></p><p> 在 JSP 頁面中應(yīng)用上述 Bean 要用到 < jsp:useBean> 標(biāo)記。依賴于具體使用的 JSP 引擎的不同,在何處配置以及如何配置 Bean 的方法也可能略有不同。本文將這個 Bean 的 .class 文件放在 c:jswdk-1.0examplesWEB-INFjspeans ax 目錄下,這里的 ta
40、x 是一個專門存放該 Bean 的目錄。下面是一個應(yīng)用上述 Bean 的示例頁面: </p><p><b> < HTML> </b></p><p><b> < BODY> </b></p><p> < %@ page language="java" %>
41、; </p><p> < jsp:useBean id="taxbean" scope="application" class="tax.TaxRate" /> </p><p> < % taxbean.setProduct("A002"); </p><p>
42、 taxbean.setRate(17); </p><p><b> %> </b></p><p> 使用方法 1 : < p> </p><p> 產(chǎn)品 : < %= taxbean.getProduct() %> < br> </p><p> 稅率 : <
43、; %= taxbean.getRate() %> </p><p><b> < p> </b></p><p> < % taxbean.setProduct("A003"); </p><p> taxbean.setRate(3); </p><p><b&
44、gt; %> </b></p><p> < b> 使用方法 2 : < /b> < p> </p><p> 產(chǎn)品 : < jsp:getProperty name="taxbean" property="Product" /> </p><p><
45、;b> < br> </b></p><p> 稅率 : < jsp:getProperty name="taxbean" property="Rate" /> </p><p><b> < /BODY> </b></p><p><b&
46、gt; < /HTML> </b></p><p> 在 < jsp:useBean> 標(biāo)記內(nèi)定義了幾個屬性,其中 id 是整個 JSP 頁面內(nèi)該 Bean 的標(biāo)識, scope 屬性定義了該 Bean 的生存時間, class 屬性說明了該 Bean 的類文件(從包名開始)。 </p><p> 這個 JSP 頁面不僅使用了 Bean 的 set
47、 和 get 方法設(shè)置和提取屬性值,還用到了提取 Bean 屬性值的第二種方法,即使用 < jsp:getProperty> 標(biāo)記。 < jsp:getProperty> 中的 name 屬性即為 < jsp:useBean> 中定義的 Bean 的 id ,它的 property 屬性指定的是目標(biāo)屬性的名字。 </p><p> 事實證明, Java Servlet 是一種
48、開發(fā) Web 應(yīng)用的理想構(gòu)架。 JSP 以 Servlet 技術(shù)為基礎(chǔ),又在許多方面作了改進(jìn)。 JSP 頁面看起來象普通 HTML 頁面,但它允許嵌入執(zhí)行代碼,在這一點上,它和 ASP 技術(shù)非常相似。利用跨平臺運行的 JavaBean 組件, JSP 為分離處理邏輯與顯示樣式提供了卓越的解決方案。 JSP 必將成為 ASP 技術(shù)的有力競爭者。</p><p> The JSP basic learning ma
49、terial</p><p> 1. JSP technology overview</p><p> In from the official launch JSP (JavaServer Web), then the new Web application development skills quickly to cause the attention of people. Th
50、e JSP for creating highly dynamic Web application provides a unique development environment. According to the statement from can adapt to the market, the JSP WebServer, including I can with Apache IIS4.0, 85% of server p
51、roducts. Even if you the ASP "madly", we believe, paying attention to the development of JSP are still very be necessary.</p><p> (1)JSP simple compared with ASP</p><p> The JSP and
52、Microsoft of ASP technology are very similar. Both offer in HTML code mixed some code, by the language engine interpretive execution code's ability. In ASP and JSP environment, HTML code is mainly responsible for des
53、cribe information display, and program code is used to describe handling logic. Normal HTML page only depends on the Web server and the ASP and JSP page need additional language engine analysis and implementation program
54、 code. The program code to be executing embedded int</p><p> ASP programming language is VBScript such scripting language, JSP use is Java, this is both one of the most significant differences. In addition,
55、 ASP and JSP more essential difference: two languages in a totally different way engine handling page embedded program code. In the ASP, VBScript code is ASP engines interpret execution; In the JSP, code has been compile
56、d into Java virtual machine by Servlet and execution, the compiler operation is only on the JSP page first request happen.</p><p> (2)Dimension of running environment</p><p> From the JSP page
57、 in http://www.javasoft.com/products/jsp/index.html, from here can also download the JSP specification, these standard defines the supplier in creating JSP engine when must comply to some rules.</p><p> Exe
58、cute JSP code needed on the server installation JSP engine. Here we use is from the Development Kit (JavaServer Web JSWDK). To facilitate learning, this package offers a lot for modification examples. JSWDK after install
59、ation, just need to perform startserver command can server. The default configuration server in the port 8080 surveillance, use http://localhost:8080 can open default page.</p><p> In running the JSP sample
60、 page before installation, please pay attention to the JSWDK directory, especially "schools" subdirectories of content. Execute the sample pages, here can see how the JSP page are converted into Java source fil
61、e, then compiled into scale-up file (i.e. Servlet). JSWDK packages examples in the page is divided into two categories, they or JSP files, or is included in a form of HTML files, these forms all by JSP code processing. A
62、nd as the Java, JSP ASP code are executed on </p><p> Eclipse is an open source, based on a Java extensible development platform. Eclipse it just a framework and a set of service, used to construct the Deve
63、lopment environment through plug-ins components, the key is Eclipse comes in a standard plugin sets, including Java Development Tools (Java Development Tools, JDT). The Eclipse is developed by IBM alternative commercial
64、software for the next generation of Java Visual age-related IDE development environment, November 2001 contribution to the open </p><p> (3)JSP page examples </p><p> Below we analyze a simple
65、 JSP page. You can JSWDK examples in the directory create another directory store this file, the file name can be arbitrary, but extensions must serve. JSP. From the code below the list can see, except the JSP page than
66、ordinary HTML page more Java code outside, both has the same basic structure. Java code is through < % and % > symbols to join in the middle of the HTML code, its main function is to generate and display a from 0 t
67、o 9 string. In the string in the front an</p><p><b> < HTML> </b></p><p> < HEAD>< TITLE>JSP PAGE < /TITLE>< /HEAD> </p><p><b> &l
68、t; BODY> </b></p><p> < %@ page language="java" %> </p><p> < %! String str="0"; %> </p><p> < % for (int i=1; i < 10; i++) { </
69、p><p> str = str + i; </p><p><b> } %> </b></p><p> JSP Before out。 </p><p><b> < P> </b></p><p> < %= str %> <
70、/p><p><b> < P> </b></p><p> JSP After out。 </p><p><b> < /BODY> </b></p><p><b> < /HTML> </b></p><p&g
71、t; The JSP page can be divided into several parts for analysis.</p><p> First is the JSP instructions. It describes the basic information of the page, such as the use of language, whether to maintain conve
72、rsation status, whether to use cushion etc. The JSP instructions by < % @ beginning, % > over. In this example, directive "< % @ brief language =" Java "% >" simply defines this example is
73、 using Java language (at present, in the JSP specification in Java is the only support language).</p><p> Next came the JSP statement. The JSP statement may be regarded as the definition of this level of va
74、riables and method of place. The JSP statement by < %! Start, % > over. If the cases of "< %! String STR =" 0 "; % > "defines a String variable. In every statement behind must have a semic
75、olon, just like in ordinary Java class declaration in the same member variables.</p><p> Located in < % and % > between the code block is to describe the JSP page handling logic of Java code, such as
76、the example shown the seas cycle.</p><p> Finally, located in < % = and % > between code is called the JSP expression, such as the example of "< % = STR % >" below. The JSP expression
77、provides a will JSP generated numerical embedded HTML pages of simple method.</p><p> 2. The session state management</p><p> The session state maintain is the Web application developers must
78、face the problem. There are various ways can be used to solve this problem, if use Cookies, hidden form input domain, or directly to the URL in additional status information. Java Servlet provides a continuous effectivel
79、y in multiple requests the conversation between objects, the object allows users to store and retrieve the session state information. The JSP also support Servlet of this concept.</p><p> In the JSP from gu
80、idelines can see many relevant implied object instructions (implicit meaning is that these objects can directly referenced, do not need explicit statement, also do not need special code to create actually cases). For exa
81、mple that object, it is the HttpServletRequest a derived class. The object contains all the related current browser requests information, including Cookies, HTML form variables, etc. Session object is also such a hidden
82、objects. This object in the first JSP page</p><p> To illustrate the session object concrete application, next we use three pages more than a page of simulation Web application. The first page (q1. HTML) co
83、ntain only a requirement to enter your user name HTML forms, the HTML code is as follows:</p><p><b> < HTML> </b></p><p><b> < BODY> </b></p><p&g
84、t; < FORM METHOD=POST ACTION="q2.jsp"> </p><p> Please write your name: </p><p> < INPUT TYPE=TEXT NAME="thename"> </p><p> < INPUT TYPE=SUBMI
85、T VALUE="SUBMIT"> </p><p><b> < /FORM> </b></p><p><b> < /BODY> </b></p><p><b> < /HTML> </b></p><p&
86、gt; The second page is a JSP page (q2. JSP), it through that object extraction in q1. HTML form thename value, it will be stored for name variable, then will the name value saved to the session objects. Session object i
87、s a name/value pairs set, here, name/value pairs of the name is "thename", namely for name values of the value of the variable. Due in session during the session object is effective until, so here preserved var
88、iables on subsequent page as well. Q2. JSP another task is to ask the secon</p><p><b> < HTML> </b></p><p><b> < BODY> </b></p><p> < %@ pa
89、ge language="java" %> </p><p> < %! String name=""; %> </p><p><b> < % </b></p><p> name = request.getParameter("thename");
90、</p><p> session.putValue("thename", name); </p><p><b> %> </b></p><p> What is your name: < %= name %> </p><p><b> < p>
91、</b></p><p> < FORM METHOD=POST ACTION="q3.jsp"> </p><p> What do you want to eat? </p><p> < INPUT TYPE=TEXT NAME="food"> </p><p
92、><b> < P> </b></p><p> < INPUT TYPE=SUBMIT VALUE="SUBMIT"> </p><p><b> < /FORM> </b></p><p><b> < /BODY> </
93、b></p><p><b> < /HTML> </b></p><p> The third page is a JSP page (percentile. JSP), main task is to show the q&a results. It from the value of the thename session obje
94、ct extraction and display it, prove the value in the first though page input, but through session object is maintained. Percentile. JSP another task is to extract the user input at the second page and displays it:</p&
95、gt;<p><b> < HTML> </b></p><p><b> < BODY> </b></p><p> < %@ page language="java" %> </p><p> < %! String food=&quo
96、t;"; %> </p><p><b> < % </b></p><p> food = request.getParameter("food"); </p><p> String name = (String) session.getValue("thename");
97、</p><p><b> %> </b></p><p> Your name is: < %= name %> </p><p><b> < P> </b></p><p> Your favorite food is: < %= food %>
98、; </p><p><b> < /BODY> </b></p><p><b> < /HTML> </b></p><p> 3. Citing JavaBean components</p><p> Based on a Java JavaBean is a
99、 kind of software component. In Web applications for the JSP integrated JavaBean component provides the perfect support. This support can not only shorten time (can use directly by test and trustworthy of existing compon
100、ents, to avoid the repeated development), but also for the JSP application has brought more scalability. JavaBean components can be used to execute complex computing tasks, or responsible and database of interaction and
101、data extraction, etc. If we hav</p><p> To illustrate the JSP JavaBean application environment, we created a name of TaxRate Bean. It has two attributes that our Product (products) and Rate (tax). Two set s
102、eparately used to set the two properties, and two the get method is used to extract the two attributes. In practical applications, this kind of Bean shall generally be from a database abstraction tax rate, here we simpli
103、fy the value of this process, allows any setting rate. Below is the Bean code list:</p><p> package tax; </p><p> public class TaxRate { </p><p> String Product; </p><
104、p> double Rate; </p><p> public TaxRate() { </p><p> this.Product = "A001"; </p><p> this.Rate = 5; </p><p><b> } </b></p><p>
105、; public void setProduct (String ProductName) { </p><p> this.Product = ProductName; </p><p><b> } </b></p><p> public String getProduct() { </p><p> r
106、eturn (this.Product); </p><p><b> } </b></p><p> public void setRate (double rateValue) { </p><p> this.Rate = rateValue; </p><p><b> } </b>
107、</p><p> public double getRate () { </p><p> return (this.Rate); </p><p><b> } </b></p><p><b> } </b></p><p> In applying the
108、above JSP page Bean will use < > markup. UseBean JSP: Depend on specific use JSP engine is different, where configuration, and how to configure Bean approach can be slightly different. This paper will the Bean, sca
109、le-up files in c: JSWDK - 1.0 examplesWEB - INFjspeans ax directory, here is a special store the tax Bean directory. Below is an example of applying the above Bean page:</p><p><b> < HTML> </
110、b></p><p><b> < BODY> </b></p><p> < %@ page language="java" %> </p><p> < jsp:useBean id="taxbean" scope="application"
111、; class="tax.TaxRate" /> </p><p> < % taxbean.setProduct("A002"); </p><p> taxbean.setRate(17); </p><p><b> %> </b></p><p>
112、 Method of use 1: < p> </p><p> product: < %= taxbean.getProduct() %> < br> </p><p> Tax rates:< %= taxbean.getRate() %> </p><p><b> < p> <
113、/b></p><p> < % taxbean.setProduct("A003"); </p><p> taxbean.setRate(3); </p><p><b> %> </b></p><p> < b> Method of use 2 : <
114、; /b> < p> </p><p> product : < jsp:getProperty name="taxbean" property="Product" /> </p><p><b> < br> </b></p><p> Tax rates
115、 : < jsp:getProperty name="taxbean" property="Rate" /> </p><p><b> < /BODY> </b></p><p><b> < /HTML> </b></p><p> In
116、 < jsp:useBean> markup within useBean JSP: defines several attribute, including id is whole the JSP page within the scope of the logo, Bean Bean property defines the attributes of the survival time, scale-up illust
117、rate the Bean class files (from the package name start).</p><p> This not only the JSP page using Bean of set and the get method Settings and extraction attribute value, also used to extract Bean attribute
118、value the second method, which USES < > markup. GetProperty JSP: The getProperty > < JSP: name attribute namely for < JSP: useBean > defined in the Bean id, its property attribute specified is the targe
119、t attribute names.</p><p> Facts prove that Java Servlet is one kind of development the Web application ideal framework. The JSP with Servlet technology as the foundation, and in many ways improved. The JSP
120、 page looks like ordinary HTML pages, but allows embedded code execution, at this point, it and the ASP technology are very similar. Using cross-platform running JavaBean components, JSP for separation treatments logic a
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 眾賞文庫僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 計算機(jī)專業(yè)英語java介紹外文翻譯
- 計算機(jī)專業(yè)外文翻譯--計算機(jī)
- 計算機(jī)專業(yè)-外文翻譯
- [雙語翻譯]計算機(jī)專業(yè)外文翻譯—云計算中的java web部署
- 計算機(jī)專業(yè)外文翻譯(文獻(xiàn)翻譯)
- 計算機(jī)相關(guān)專業(yè)外文翻譯
- 計算機(jī)專業(yè)外文翻譯 9
- 計算機(jī)專業(yè)aspnet外文翻譯
- [雙語翻譯]計算機(jī)專業(yè)外文翻譯—云計算中的java web部署(原文)
- 計算機(jī)專業(yè)畢業(yè)外文翻譯
- 計算機(jī)專業(yè)外文翻譯(文獻(xiàn)翻譯)
- 計算機(jī)專業(yè)外文資料翻譯
- 計算機(jī)專業(yè)外文翻譯--asp外文翻譯+原文
- 計算機(jī)外文翻譯--java編程語言的介紹
- 計算機(jī)外文翻譯---java技術(shù)與ssh框架
- 計算機(jī)專業(yè)外文翻譯----計算機(jī)視覺中的學(xué)習(xí)
- [雙語翻譯]計算機(jī)專業(yè)外文翻譯—云計算中的java web部署中英全
- 計算機(jī)專業(yè)asp開發(fā)外文翻譯
- 計算機(jī)c語言專業(yè)外文翻譯
- 計算機(jī)專業(yè)畢業(yè)外文翻譯1
評論
0/150
提交評論