您的位置:首页 > 编程语言 > Java开发

The Java EE 6 Tutorial Sharing Information

2015-08-29 08:59 483 查看
Web components, like most objects, usually work with other objects to accomplish their tasks. Web components can do so by

Using private helper objects (for example, JavaBeans components).

Sharing objects that are attributes of a public scope.

Using a database.

Invoking other web resources.

Using Scope Objects

Collaborating web components share information by means of objects that are maintained as attributes of four scope objects. You access these attributes by using the
getAttribute
and
setAttribute
methods of the class representing the scope. Table 15-2 lists the scope objects.

Table 15-2 Scope Objects

Scope ObjectClassAccessible from
Web contextjavax.servlet.ServletContextWeb components within a web context.
Sessionjavax.servlet.http.HttpSessionWeb components handling a request that belongs to the session.
RequestSubtype of javax.servlet.ServletRequestWeb components handling the request.
Pagejavax.servlet.jsp.JspContextThe JSP page that creates the object.

Controlling Concurrent Access to Shared Resources

In a multithreaded server, shared resources can be accessed concurrently. In addition to scope object attributes, shared resources include in-memory data, such as instance or class variables, and external objects, such as files, database connections, and network connections.

Concurrent access can arise in several situations:

Multiple web components accessing objects stored in the web context.

Multiple web components accessing objects stored in a session.

Multiple threads within a web component accessing instance variables. A web container will typically create a thread to handle each request. To ensure that a servlet instance handles only one request at a time, a servlet can implement the
SingleThreadModel
interface. If a servlet implements this interface, no two threads will execute concurrently in the servlet’s
service
method. A web container can implement this guarantee by synchronizing access to a single instance of the servlet or by maintaining a pool of web component instances and dispatching each new request to a free instance. This interface does not prevent synchronization problems that result from web components’ accessing shared resources, such as static class variables or external objects.

When resources can be accessed concurrently, they can be used in an inconsistent fashion. You prevent this by controlling the access using the synchronization techniques.

Previous Contents Next

Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Legal Notices
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: