Answer Posted / janet
There are two types of Enterprise beans- session beans and
entity beans representing different types of business logic
abstractions.
session beans represent behaviors associated with client
sessions ,they are generally implemented to perform a
sequence of tasks with in the context of a transaction. A
session bean is a logical extension of the client program
,running process on the clients behalf remotely on the server.
Entity bean represent specific data or collection of data
,such as a row in a relational database.Entity bean methods
provided operations for action on the data represented by
the bean.An entity bean is persistent,it servives as long as
its data remains in the database.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is Session Bean Interface?
What is Enterprise JavaBeans (EJB)?
What is ejb and its architecture?
Why is ejb needed?
How to create ejb project in eclipse?
What is difference between ejb 1.1 and ejb 2.0?
What is entity bean in ejb?
Is state maintained by a Stateless bean?
What is ejb and why it is used?
How do I use a less than or greater than on a message selector in ejb-jar.xml?
Is it possible to have threading in ejb?
What do you mean by re-entrant? Can you say that session beans as re-entrant? Can entity beans be specified as re-entrant?
How can one EJB be called from within another EJB?
What is stateless programming?
What are the different types of ejb?