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.

 Avaya DevConnect Center
 Service Component Architecture/Service Data Objects Solution Center
 Intel Go Parallel Portal
 Internet.com eBook Library
 IBM Software Construction Toolbox
 Microsoft RIA Development Center
 Destination .NET
XML error: not well-formed (invalid token) at line 53
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%.

Metasploit 3.2 Offers More 'Evil Deeds'
'Thank You Apple. Seriously.'
The Buzz: BlackBerry App Store Seen Next
Is .NET on Linux Finally Ready?
Red Hat Takes on HPC Market, Microsoft
Python's New Release Bridges the Gap
No Flash Seen on iPhone Horizon
Apple Yields to Complaints Over iPhone NDA
Microsoft Shows Some Ankle With Visual Studio
Gentoo Linux Cancels Distribution

Use Explicit Conversion Functions to Avert Reckless Implicit Conversions
Polyglot Programming: Building Solutions by Composing Languages
Automated testing for .NET by Ben Hall
"Supply Chain" SOA with SKOS
Service Component Architecture in Real Life
C++Ox: The Dawning of a New Standard
Getting Started with Virtualization
Master Complex Builds with MSBuild
eCryptfs: Single-File Encryption in Linux
CCXML in Action: A CCXML Auto Attendant

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



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

Solutions
Whitepapers and eBooks
IBM Whitepaper: Innovative Collaboration to Advance Your Business
Internet.com eBook: Real Life Rails
Avaya Article: Call Control XML - Powerful, Standards-Based Call Control
Internet.com eBook: The Pros and Cons of Outsourcing
Go Parallel Article: Scalable Parallelism with Intel(R) Threading Building Blocks
Internet.com eBook: Best Practices for Developing a Web Site
IBM CXO Whitepaper: The 2008 Global CEO Study "The Enterprise of the Future"
Avaya Article: Call Control XML in Action - A CCXML Auto Attendant
Go Parallel Article: James Reinders on the Intel Parallel Studio Beta Program
IBM CXO Whitepaper: Unlocking the DNA of the Adaptable Workforce--The Global Human Capital Study 2008
Adobe Acrobat Connect Pro: Web Conferencing and eLearning Whitepapers
Go Parallel Article: Getting Started with TBB on Windows
HP eBook: Storage Networking , Part 1
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
Go Parallel Video: Intel(R) Threading Building Blocks: A New Method for Threading in C++
HP Video: Is Your Data Center Ready for a Real World Disaster?
Microsoft Partner Portal Video: Microsoft Gold Certified Partners Build Successful Practices
HP On Demand Webcast: Virtualization in Action
Go Parallel Video: Performance and Threading Tools for Game Developers
Rackspace Hosting Center: Customer Videos
Intel vPro Developer Virtual Bootcamp
HP Disaster-Proof Solutions eSeminar
HP On Demand Webcast: Discover the Benefits of Virtualization
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
Microsoft Download: Silverlight 2 Software Development Kit Beta 2
30-Day Trial: SPAMfighter Exchange Module
Red Gate Download: SQL Toolbelt
Iron Speed Designer Application Generator
Microsoft Download: Silverlight 2 Beta 2 Runtime
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
IBM IT Innovation Article: Green Servers Provide a Competitive Advantage
Microsoft Article: Expression Web 2 for PHP Developers--Simplify Your PHP Applications
Featured Algorithm: Intel Threading Building Blocks - parallel_reduce
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES