advertisement
javaboutique
Search Tips
Articles  |   Tutorials  |   Reviews  |   Tools  |   by Category  |   by Date  |   by Name  |   Submit  |   Source  |   Forums  |  
javaboutique
Browse DevX


Partners & Affiliates











advertisement



Title: Professional EJB
ISBN: 1861005083
US Price: $ 59.99
Canadian Price:
C$ 89.95
UK Price: £ 47.99
© Wrox Press Limited, US and UK.

Reviews : Java Books :
Professional EJB : The EJB 2.0 Entity Model

Local and Remote Client Views of the Object Model

A client (meaning either an application client, a web component, or another EJB) accesses an EJB through its home and component interfaces. There are two varieties of component interfaces: remote and local. Remote interfaces have been part of the EJB specification from the beginning. Local interfaces are an addition made by the EJB 2.0 specification. This section will first briefly review the concept of local interfaces. Then it will discuss the utility of local interfaces for developing your object model. Finally it will talk about local interfaces, remote interfaces, and their implications for the client view of your object model.

Local Interfaces Reviewed

A local interface is a component interface, much like the remote interface, for a session or entity bean. An EJB component can have both a local and remote interface. They are both described in the deployment descriptor and made available through a home interface for the component. A local interface differs from a remote interface in several important respects.

The local interface must always be located in the same Java Virtual Machine
One of the advantages of a remote interface is that it provides location transparency. In other words, the client can use that remote interface without knowing or caring if the EJB it represents is deployed in the same JVM, the same container, the same application server, or even in the same company. A local interface must be used on the machine to which the EJB component is deployed. This limits your flexibility during deployment, although in practice performance considerations dictate that tightly coupled EJB components should be located in the same container anyway.
Parameters and return values to a local interface are passed by reference, not by value
A remote interface must always enforce pass-by-value semantics, even if the call is in reality a local call. Pass-by-value semantics require that copies be made of all objects, unless they are immutable or they are remote references. This is to ensure that a bean's behavior is not different depending on how it is deployed, and is a requirement of location transparency. In practice, there are situations where this copying can be expensive, for example if a large XML document were passed as a parameter or returned as a result. (Potentially remote calls use pass-by-value semantics because a copy of a non-remote object must of course be made when it is streamed from one JVM to another, say across a network.)
Methods on a local interface do not throw java.rmi.RemoteException
Methods that are called remotely are subject to various interruptions, such as transport difficulties and remote object availability, which are not relevant to methods that are called locally. These interruptions are represented by a checked exception of class java.rmi.RemoteException, which must be declared in the throws clause of a remote method. A method on a local interface must not throw java.rmi.RemoteException.

Due to this rule, certain exceptions that derive from java.rmi.RemoteException (TransactionRequiredException, TransactionRolledBackException, and NoSuchObjectException) need to have local equivalents that derive from javax.ejb.EJBException instead (TransactionRequiredLocalException, TransactionRolledBackLocalException, and NoSuchObjectLocalException).

The Utility of Local Interfaces for Your Object Model

Local interfaces make it practical for entity components to represent fine-grained aspects of your object model, in terms of performance. Consider the following passage from the EJB 1.1 specification that describes why an entity should be coarse-grained:

"Every method call to an entity object via the remote and home interface is potentially a remote call. Even if the calling and called entity bean are collocated in the same JVM, the call must go through the container, which must create copies of all the parameters that are passed through the interface by value (i.e. all parameters that do not extend the java.rmi.Remote interface). The container is also required to check security and apply the declarative transaction attribute on the inter-component calls. The overhead of an inter-component call will likely be prohibitive for object interactions that are too fine-grained."

Here are the problems, and the corresponding solutions of local interfaces:

  • Every method call is potentially a remote call
    This is not true of local interfaces.
  • The container must create copies of all the parameters that do not extend java.rmi.Remote
    This is not true of local interfaces, which pass parameters by reference.
  • The container is required to check security and apply declarative transaction attributes
    This is still true of local interfaces. However, the ability to have methods without security checks was introduced to the EJB 2.0 specification, which allows the application assembler to mitigate this problem. (Use the <unchecked> element rather than a role name in the <method-permission> element to indicate that a method should not be checked for authorization.)

How to Add Java Applets to Your Site

New on the Java Boutique:

New Review:

Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling API boasts simplicity, ease-of-integration, a well-rounded feature set, and it's free!

New Applet:

Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA sequences into three useful formats.

Elsewhere on internet.com:

WebDeveloper Java
Lots of Java information on webdeveloper.com

WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.

ScriptSearch Java
Hundreds of free Java code files to download.

jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.

 Microsoft Visual Studio 2010 Showcase
 Avaya Developer Showcase
 MSDN Spotlight
 PHP for Windows Showcase
XML error: undefined entity at line 39
advertisement
Receive Articles via our XML/RSS feed
Receive Articles via our XML/RSS feed

JavaBytes
Internet Cyclone
This powerful, easy-to-use, internet optimizer is for Windows 95, 98, ME, NT, 2000 and XP. It's designed to automatically optimize your Windows settings, boosting your Internet connection up to 200%.

Windows 7: From Beta to Final Code in One Year
Google Shows Off Chrome OS, Releases Source
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?
Fedora 12 Takes Aim at Linux Networking
Top Supercomputer Nearly Doubles in Speed
Fedora 12 Linux Tackles Virtualization
Apple Gives iPhone Developers App Status Tracker
Novell Sets OpenSUSE 11.2 Free

Creating Custom Export Filters for StarOffice with XSLT
WPF Wonders: Using DataTemplates
Crystal Reports Family Offers Options for Developers
Avaya Aura Session Manager video
Avaya Aura Overview video
Exploring HTML 5's Audio/Video Multimedia Support
Overriding Virtual Functions? Use C++0x Attributes to Avoid Bugs.
Understanding the Cloud Computing Security Vulnerabilities
Cisco and IBM Target a Greener World
Upgrade to Visual Studio 2010 with the Ultimate Offer

Advertising Info  |   Member Services  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs