EJB Entity Beans
By: Priya
EJB is a Java API specification that provides a component architecture for the development and deployment of distributed business objects, but many Java programmers use EJB only for its database access and Java object-persistence capabilities. If your application is highly transactional, requires high availability, and is likely to have many concurrent users, you might want to consider using EJB.
EJB is a standard part of the Java EE and is therefore supported by all Java EE–compliant application servers. Application servers that support EJB do so by providing an EJB container that hosts EJB components, just as a servlet container hosts servlets and JSPs. And just as servlet containers may be clustered to provide load balancing and fault tolerance for servlets, EJB containers can be clustered to provide the same functionality for distributed business objects. An EJB container can support three types of components: entity beans, session beans, and message beans. We won’t discuss session and message beans because they aren’t persistent. We’ll focus on entity beans, which can be persisted to a data store by using one of the following two mechanisms:
- Container-managed persistence (CMP): You provide a
mapping that specifies how to
map fields from your entity bean objects to fields in a database, and the EJB container
manages the persistence of your entity beans in the database. - Bean-managed persistence (BMP): You implement the
persistence of your objects by
using JDBC, an O/R framework, JDO, or some other technology. The EJB container will
notify your code when it’s time to store or retrieve an object to or from the database.
The benefits provided by using EJB for persistence are many; here are some of the most
significant: - Built-in O/R framework: If you use EJB CMP, you get
all the benefits of using an O/R
framework plus the added benefits of EJB. However, the O/R mapping capabilities of
CMP don’t address some of the harder tasks in O/R mapping such as optimistic locking,
batch updates, and so on. - Scalability and high availability: EJB containers can
be clustered to allow your application
to scale up to meet the needs of more and more users. If an EJB container fails, the
objects that were running in that container will automatically and transparently failover
to continue execution in another EJB container. - Declarative transaction support: EJB allows you to
declare the transactional characteristics
of your business objects. Instead of writing the code to begin and end
transactions, you simply declare the transactional requirements of each of your
object’s methods and let the EJB container do the rest. If you have a complex and
highly transactional system, this is an important benefit. - Declarative method-level security: EJB allows you to
declare the security characteristics
of your business objects. Instead of writing code to ensure that only certain users
working in certain roles can use your objects, you simply declare the security constraints
of each of your object’s methods and let the EJB container handle the security. - Distributed object support: EJB is designed to
support the development and deployment
of distributed business objects that are callable via Java Remote Method
rotocol (IIOP).
One disadvantage of EJB is complexity. The technology is complex, and the learning curve is steep. To learn EJB development, you need to learn the EJB philosophy, the EJB API, recommended EJB patterns, EJB development tools, and the EJB deployment descriptors. To learn EJB deployment, you need to learn how to use the administration and deployment tools provided by the various Java EE application servers that you intend to support, each of which can vary quite significantly.
Another disadvantage of EJB is development overhead. When EJBs were first introduced, you needed to create at least three (often four) files for a single EJB. Tools such as XDoclet made the process easier, but until recently there was a lot of complexity in developing even simple beans. EJB 3.0, part of the latest Java Platform, Enterprise Edition 5 specification, has made steps to make the writing process easier, but there are still many issues to understand and consider. There is also considerable runtime overhead associated with using entity beans as the container interposes a variety of services for your beans. EJB does a lot for you, but with increased complexity and significant development overhead. Make sure that you really need the benefits provided by EJB before you commit to using it in your application.
Most Viewed Articles (in EJB ) |
Latest Articles (in EJB) |
Comment on this tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Subscribe to Tutorials
Related Tutorials
Archived Comments
1. It is really very gud. And wht i suggest u is if
View Tutorial By: Ragava rao at 2008-07-19 05:33:18
2. really understandable
but 'm expecting with
View Tutorial By: rajkumar at 2008-03-14 03:53:21
3. Article is good but really lacks somewhat clarity
View Tutorial By: Ashwin Perti at 2009-09-14 04:02:39
4. please try to elaborate the explanation with examp
View Tutorial By: bhavitha at 2014-02-21 06:09:12