| 
								        
								         
								        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.
 |