What is the major difference SessionBean and EntityBean?

Answer Posted / sulthansheriff

In entity-bean , there are finder- method which are not in
session-bean
In entity-bean , CMR's are used , which are not there in
session-bean
----------------------------------------
Entity Beans
-------------
- represents an entity
- must have at least one finderXXX() method
- may or may not have create() or createXXX() methods
- when you call remove() on an entity bean the entity is
removed permanently but the bean instance goes back to the
pool it never die's.
- Entity beans home interface can have Home Business methods
- Entity beans home methods may or may not return component
interface object.
- Entity bean create() method creates a new row into the
database whereas create() method in session bean doesn't.
- Entity bean's finder method that returns a collection will
never throw a exception if it does not find related records
in the underlying persistent storage instead it will return
an empty collection.
- Entity beans will survive container crash as long as the
data is persisted in the underlying storage.
-----------------------------------------------------------
Session Bean
-------------
- generally they are used to perform some actions(verbs)
- there are two types of SB stateless and stateful.
- should have at least one create() "no args" constructor
(Stateless bean only)
- Stateless beans are more scalable then stateful beans.
- Stateless beans do not retain conversational state between
method invocations.
- Stateless beans are not tied to a particular client
whereas stateful beans are.
- The result of a client calling create() on home interface
of a stateless SB does not result into creation of a bean
but in stateful it does.
- There is no effect of calling remove() on Stateless
session bean because the beans go back to the pool after the
method call completes.
- session beans will never survive a container crash.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of @ejb annotation?

538


What are the components of ejb?

566


What is ejb application?

495


How to generate ejb stubs in eclipse?

735


What is passivation and activation in ejb?

538






How entity beans support container managed persistence?

1936


What is Enterprise JavaBeans Query Language (EJB QL)?

544


What does ejb stand for?

620


What are the types of ejb?

545


What is ejb framework?

563


How does ejb invocation take place?

575


why Bean class implements all business method of Remote interface but bean bean class not implements the remote interface

2024


What is EJB server provider?

583


List down the steps for the demonstration of ejp persistence mechanism.

627


What is ejb client?

556