What advantage does an entity bean have over a sessin bean?
Answer Posted / gaurav
An entity bean represents an entity such as an employer,
student, etc. A session bean is a type of EJB (Enterprise
JavaBean) that encapsulates the logic of a business process
and business rules. Entity beans offer the following
advantages over session beans:
Persistence: Entity beans are persistent, i.e., the state
of the bean exists beyond the lifetime of the application
or the application process. There are two types of
persistence: Bean-managed and Container-managed. In Bean-
managed persistence, the code contains the calls that
access the database. In Container-managed persistence, the
EJB container generates the database calls.
Shared Access: Multiple clients can share the entity beans.
It works within the transactions as the client changes the
data.
Primary Key: Each entity bean has a unique object
identifier that enables the client to locate a particular
entity bean.
Relationship: An entity bean can relate to other entity
beans. Both CMP and BMP can be used to maintain
relationships.
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is the best definition for data?
What are the types of exceptions?
how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? : Java thread
Is the milky way in a void?
What is an enumeration?
What are the restriction imposed on a static method or a static block of code?
Which programming language is best in future?
define the terminology association.
What is getclass () getname () in java?
What does arrays sort do in java?
What is difference between call by value and call by reference?
Which container method is used to cause a container to be laid out and redisplayed in java programming?
How to set the permissions to a file in java?
What is the collection interface?
Can a constructor be made final?