Types of Beans

Describe the types of Beans.

There are three types of Beans:

Stateless Session Beans
Statefull Session Beans
Entity Beans

Stateless Session Beans
These beans do not maintain the state and the information are short lived.

Statefull Session Beans
These beans are also short lived and do not survive the server crashes. These beans are used to maintain the session of a client.

Entity Beans
These beans store the data in a database.
Explain the Common use of EJB
Explain the Common use of EJB - The EJBs can be used to incorporate business logic in a web-centric application......
What are transaction isolation levels in EJB?
What are transaction isolation levels in EJB? - Transaction_read_uncommitted, Transaction_read_committed, Transaction_repeatable_read......
What is Entity Bean?
What is Entity Bean? - The entity bean is used to represent data in the database. Entity beans provide a component model that allows.....
Post your comment