+

Search Tips   |   Advanced Search

 

Enterprise beans

 

An enterprise bean is a Java component that can be combined with other resources to create J2EE applications. There are three types of enterprise beans, entity beans, session beans, and message-driven beans.

All beans reside in EJB containers, which provide an interface between the beans and the appserver on which they reside.

Entity beans store permanent data, so they require connections to a form of persistent storage. This storage might be a database, an existing legacy application, a file, or another type of persistent storage.

Session beans typically contain the high-level and mid-level business logic for an application. Each method on a session bean typically performs a particular high-level operation. For example, submitting an order or transferring money between accounts. Session beans often invoke methods on entity beans in the course of their business logic.

Session beans can be either stateful or stateless. A stateful bean instance is intended for use by a single client during its lifetime, where the client performs a series of method calls that are related to each other in time for that client. One example is a "shopping cart" where the client adds items to the cart over the course of an online shopping session. In contrast, a stateless bean instance is typically used by many clients during its lifetime, so stateless beans are appropriate for business logic operations that can be completed in the span of a single method invocation. Stateful beans should be used only where absolutely necessary -- using stateless beans improves the ability to debug, maintain, and scale the application. Message-driven beans enable asynchronous message servicing.

Beans that require data access use data sources, which are administrative resources that define pools of connections to persistent storage mechanisms.

For more information about enterprise beans, see Enterprise beans: Resources for learning.


 

Related concepts


Data sources
Message-driven beans - JCA components
Message-driven beans - listener port components

 

Related tasks


Task overview: Using enterprise beans in applications

 

Related Reference


Enterprise beans: Resources for learning