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 are the callback annotations for the stateless bean?
Are entity beans allowed to create() methods?
What do you mean enterprise javabeans (ejb) container?
What is backing bean?
Is having static initializer blocks legal in ejb?
What are the callback annotations for entity bean?
How to import ejb project in eclipse?
How to generate ejb stubs in eclipse?
Enlist the enterprise beans types?
Why do we use @requestmapping?
What do you mean by EJB architecture?
How can enterprise javabeans be accessed from active server pages?
Is method overloading allowed in ejb?
How does ejb work in java?
What is the advantage of using entity bean for database operations, over directly using jdbc api to do database operations?