- 浏览: 6970241 次
- 性别:
- 来自: 武汉
-
文章分类
最新评论
-
逐客叫我:
看完了懵了,一会原生方法栈一会堆,自己都不用一套。
深入JVM系列(一)之内存模型与内存分配 -
xhwahaha:
import java.util.Arrays;public ...
腾讯的一个面试题 -
j00131120:
总结的非常不错
从员工到总监,你要明白的8个道理 -
Will.Du:
这是thinking in java的例子吧
对象序列化 -
ping22changxin:
能否借你事例源码学习一下,谢谢了:812185421@qq.c ...
ActiveMQ发送ObjectMessage的一个问题
Asynchronous JavaScript Technology and XML (AJAX) With the Java Platform
<!-- <span class="sp10"> </span><br /> -->
![]() |
Using JavaScript technology, an HTML page can asynchronously make calls to the server from which it was loaded and fetch content that may be formatted as XML documents, HTML content, plain text, or JavaScript Object Notation (JSON). The JavaScript technology may then use the content to update or modify the Document Object Model (DOM) of the HTML page. The term Asynchronous JavaScript Technology and XML (Ajax) has emerged recently to describe this interaction model.
Ajax is not new. These techniques have been available to developers
targeting Internet Explorer on the Windows platform for many years. Until
recently, the technology was known as web remoting or remote scripting. Web
developers have also used a combination of plug-ins, Java applets, and hidden
frames to emulate this interaction model for some time. What has changed
recently is the inclusion of support for the XMLHttpRequest
object in the JavaScript runtimes of the mainstream browsers.
The real magic is the result of the JavaScript technology's XMLHttpRequest
object. Although this object is not specified in the formal JavaScript
technology specification, all of today's mainstream browsers support it. The subtle
differences with the JavaScript technology and CSS support among current generation
browsers such as Mozilla Firefox, Internet Explorer, and Safari are manageable.
JavaScript libraries such as Dojo,
Prototype, and the
Yahoo User Interface Library
have emerged to fill in where the browsers are not as manageable and to provide a
standardized programming model. Dojo, for example, is addressing accessibility, internationalization,
and advanced graphics across browsers -- all of which had been thorns in the side of
earlier adopters of Ajax. More updates are sure to occur as the need arises.
What makes Ajax-based clients unique is that the client contains page-specific control logic embedded as JavaScript technology. The page interacts with the JavaScript technology based on events such as the loading of a document, a mouse click, focus changes, or even a timer. Ajax interactions allow for a clear separation of presentation logic from the data. An HTML page can pull in bite-size pieces to be displayed. Ajax will require a different server-side architecture to support this interaction model. Traditionally, server-side web applications have focused on generating HTML documents for every client event resulting in a call to the server. The clients would then refresh and re-render the complete HTML page for each response. Rich web applications focus on a client fetching an HTML document that acts as a template or container into which to inject content, based on client events using XML data retrieved from a server-side component.
Some uses for Ajax interactions are the following:
Real-time form data validation: Form data such as user IDs, serial numbers, postal codes, or even special coupon codes that require server-side validation can be validated in a form before the user submits a form. See Realtime Form Validation for details.
Autocompletion: A specific portion of form data such as an email address, name, or city name may be autocompleted as the user types.
Load on demand: Based on a client event, an HTML page can fetch more data in the background, allowing the browser to load pages more quickly.
Sophisticated user interface controls and effects: Controls such as trees, menus, data tables, rich text editors, calendars, and progress bars allow for better user interaction and interaction with HTML pages, generally without requiring the user to reload the page.
Refreshing data and server push: HTML pages may poll data from a server for up-to-date data such as scores, stock quotes, weather, or application-specific data. A client may use Ajax techniques to get a set of current data without reloading a full page. Polling is not the most effecient means of ensuring that data on a page is the most current. Emerging techniques such as Comet are being developed to provide true server-side push over HTTP by keeping a persistent connection between the client and server. See this blog entry on Comet using Grizzly for more on the development of server push with Java technology.
Partial submit: An HTML page can submit form data as needed without requiring a full page refresh.
Mashups: An HTML page can obtain data using a server-side proxy or by including an external script to mix external data with your application's or your service's data. For example, you can mix content or data from a third-party application such as Google Maps with your own application.
Page as an application: Ajax techniques can be made to create single-page applications that look and feel much like a desktop application. See the article on the use of Ajax and portlets for more on how you can use portlet applications today.
Though not all-inclusive, this list shows that Ajax interactions allow web applications to do much more than they have done in the past.
<!-- <span class="sp10"> </span><br /> -->![]() |
Let's consider an example. A web application contains a static HTML page, or an HTML page generated in JSP technology contains
an HTML form that requires server-side logic to validate form data without refreshing the page. A server-side web component (servlet) named ValidateServlet
will provide the validation logic. Figure 1 describes the details of
the Ajax interaction that will provide the validation logic.
![]() |
Figure 1: An Ajax Interaction Provides Validation Logic
|
The following items represent the setups of an Ajax interaction as they appear in Figure 1.
- A client event occurs.
- An
XMLHttpRequest
object is created and configured. - The
XMLHttpRequest
object makes a call. - The request is processed by the
ValidateServlet
. - The
ValidateServlet
returns an XML document containing the result. - The
XMLHttpRequest
object calls thecallback()
function and processes the result. - The HTML DOM is updated.
Now let's look at each step of the Ajax interaction in more detail.
JavaScript technology functions are called as the result of an event. In this case, the function validate()
may be mapped to
a onkeyup
event on a link or form component.
<input type="text" |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
This form element will call the validate()
function each time the user presses a key in the form field.
2. A XMLHttpRequest
object is created and configured.
An XMLHttpRequest
object is created and configured.
var req; |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
The validate()
function creates an XMLHttpRequest
object and calls the open function on the object. The open function requires
three arguments: the HTTP method, which is GET
or
POST
; the URL of the server-side component that the object will
interact with; and a boolean indicating whether or not the call will be made
asynchronously. The API is XMLHttpRequest.open(String method, String URL, boolean asynchronous)
.
If an interaction is set as asynchronous (true
) a
callback function must be specified. The callback function for this interaction
is set with the statement req.onreadystatechange = callback;
. See
section 6 for more details.
3. The XMLHttpRequest
object makes a call.
When the statement req.send(null);
is reached, the call will be
made. In the case of an HTTP GET
, this content may be
null
or left blank. When this function is called on the
XMLHttpRequest
object, the call to the URL that was set during the
configuration of the object is called. In the case of this example, the data
that is posted (id
) is included as a URL parameter.
Use an HTTP GET
when the request is idempotent, meaning that two duplicate requests will return the same results. When using the
HTTP GET
method, the length of URL, including escaped URL parameters, is limited by some browsers and by server-side
web containers. The HTTP POST
method should be used when sending data to the server that will affect the server-side
application state. An HTTP POST
requires a Content-Type
header to be set on the XMLHttpRequest
object by using the following statement:
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
When sending form values from JavaScript technology, you should take
into consideration the encoding of the field values. JavaScript
technology includes an encodeURIComponent()
function that should be used to ensure that localized content is
encoded properly and that special characters are encoded correctly to
be passed in an HTTP request.
4. The request is processed by the ValidateServlet
.
A servlet mapped to the URI "validate" checks whether the user ID is in the user database.
A servlet processes an XMLHttpRequest
just as it would any
other HTTP request. The following example show a server extracting the id
parameter from the request
and validating whether the parameter has been taken.
public class ValidateServlet extends HttpServlet { |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
In this example, a simple HashMap
is used to contain the users.
In the case of this example, let us assume that the user typed duke
as the ID.
5. The ValidateServlet
returns an XML document containing the results.
The user ID duke
is present in the list of user IDs in the users HashMap
.
The ValidateServlet
will write an XML document to the response containing a message
element
with the value of invalid
. More complex usecases may require DOM, XSLT, or other APIs to generate the
response.
response.setContentType("text/xml"); |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
The developer must be aware of two things. First, the Content-Type
must be set to text/xml
. Second, the Cache-Control
must be set to no-cache
. The XMLHttpRequest
object
will process only requests that are of the Content-Type
of only
text/xml
, and setting Cache-Control
to no-
cache
will keep browsers from locally caching responses for cases in
which duplicate requests for the same URL (including URL parameters) may return
different responses.
6. The XMLHttpRequest
object calls the callback()
function and
processes the result.
function callback() { |
<!-- END VCD7 CODE SAMPLE COMPONENT --> <!-- BEGIN VCD7 CODE SAMPLE COMPONENT -->
<message> |
<!-- END VCD7 CODE SAMPLE COMPONENT --> <!-- BEGIN VCD7 CODE SAMPLE COMPONENT -->
function parseMessage() { |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
JavaScript technology can gain a reference to any element in the
HTML DOM using a number of APIs. The recommended way to gain a
reference to an
element is to call document.getElementById("userIdMessage")
, where "userIdMessage"
is the ID attribute of an element appearing in the HTML document. With
a reference to the element, JavaScript technology may now be used
to modify the element's attributes; modify the element's style
properties; or add, remove, or modify child elements.
One common means to change the body content of an element is to set the innerHTML
property on the
element as in the following example.
<script type="text/javascript"> |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
The portions of the HTML page that were affected are re-rendered immediately following the setting of the innerHTML
.
If the innerHTML
property contains elements such as <image>
or <iframe>
,
the content
specified by those elements is fetched and rendered as well. Ajax
applications such as Google Maps use this technique of adding image
elements using Ajax calls to dynamically build maps.
The main drawback with this approach is that HTML elements are hardcoded as strings in the JavaScript technology code. Hardcoding HTML markup inside JavaScript technology code is not a good practice because it makes the code difficult to read, maintain, and modify. Consider using the JavaScript technology DOM APIs to create or modify HTML elements within JavaScript technology code. Intermixing presentation with JavaScript technology code as strings will make a page difficult to read and edit.
Another means of modifying the HTML DOM is to dynamically create new elements and append them as children to a target element as in the following example.
<!-- BEGIN VCD7 CODE SAMPLE COMPONENT --><script type="text/javascript"> |
<!-- END VCD7 CODE SAMPLE COMPONENT -->
The code sample shows how JavaScript technology DOM APIs may be used to create an element or alter the element programmatically. The support for JavaScript technology DOM APIs can differ in various browsers, so you must take care when developing applications.
<!-- <span class="sp10"> </span><br /> -->
![]() |
Although many of these benefits are noteworthy, this approach has some challenges as well:
Complexity: Server-side developers will need to understand that presentation logic will be required in the HTML client pages as well as in the server-side logic to generate the XML content needed by the client HTML pages. HTML page developers need to have a basic understanding of JavaScript technology to create new Ajax functionality. Other options such as Project jMaki and Project Dynamic Faces provide a way for Java developers to better use Ajax functionality without requiring deep knowledge of JavaScript technology.
Standardization of the
XMLHttpRequest
object: TheXMLHttpRequest
object is not yet part of the JavaScript technology specification, which means that the behavior may vary depending on the client. It's best to use libraries such as Dojo, which provides fallback solutions for making Ajax interactions transparently even on older browsers that do not support theXMLHttpRequest
Object:.JavaScript technology implementations: Ajax interactions depend heavily on JavaScript technology, which has subtle differences depending on the client. See QuirksMode.org for more details on browser-specific differences. Consider using a library such as Dojo, which addresses many of the differences.
Debugging: Ajax applications are also difficult to debug because the processing logic is embedded both in the client and on the server. Browser add-ons such as Mozilla Firebug have emerged to make debuging easier. Frameworks such as the Google Web Toolkit have emerged to allow for client and server round-trip debugging.
Securing resources and protecting your data: You can view client-side JavaScript technology simply by selecting View Source from an Ajax-enabled HTML page. A poorly designed Ajax-based application could open itself up to hackers or plagiarism. When providing Ajax services, you should take care to make sure that those services are made available only to those intended. See Restricting Access to Your Ajax Services for more information on protecting your services.
We have seen that Ajax interactions can solve many problems. Java technology provides a good base to develop and deploy Ajax-based applications with APIs for tying in HTTP processing, databases, web services, XML processing, and business objects. With a better understanding of this interaction model, today's applications can become more interactive, providing the end user with a better experience.
Using Ajax requires that you use the latest browser versions that support the XMLHttpRequest
object needed for Ajax interactions.
Using Ajax also requires a great deal of client-side JavaScript technology and CSS. As an application architect or developer,
you will need to weigh the needs of having a rich application against browser support, architecture complexity, and developer
training. As the Ajax programming model evolves, existing technologies and frameworks will make this transition easier.
What is evident is that prominent web applications are increasingly becoming more interactive. Are yours?
<!-- <span class="sp10"> </span><br /> -->![]() |
- The Ajax FAQ for the Java Developer contains resources and links for common questions and is a good next step for getting started with Ajax.
- The BluePrints Java Petstore 2.0 application shows many instances of mashups and details best practices for doing mashups and using Ajax with the Java EE 5 platform.
- Visit the Ajax Developer Resource Center.
- Read the JavaScript technology DOM bindings defined by the W3C.
- Read "Ajax: A New Approach to Web Applications" by Jesse James Garrett.
![]() |
Greg Murray is a Sun Microsystems engineer, the Ajax architect and former servlet specification lead and a former member of the BluePrints team, where he focused on the web tier and internationalization. He is coauthor of Designing Enterprise Applications With the Java 2 Platform, Enterprise Edition and Designing Web Services With the J2EE 1.4 Platform (Addison-Wesley).
相关推荐
AJAX (Asynchronous JavaScript and XML) represents a significant shift in the way interactive web applications are designed and developed. Traditional web applications rely heavily on the concept of ...
AJAX (Asynchronous JavaScript and XML) could be employed for dynamic updates without page reloads, enhancing user experience. Throughout the development process, testing is crucial to identify and ...
- AJAX(Asynchronous JavaScript and XML,异步JavaScript和XML):一种用于创建快速动态网页的技术。 - SQL Injection(SQL注入):一种攻击手段,通过输入恶意SQL代码来获取未经授权的数据。 英语短语.txt提供了...
3. **AJAX**(Asynchronous JavaScript and XML):使用AJAX,开发者可以在不刷新整个页面的情况下向服务器发送异步请求,获取数据并更新部分页面内容,比如加载更多活动信息或者实时更新排行榜。 4. **前端框架**...