Interview Questions on Enterprise Java Beans(EJB)
How EJB evolved over the years? What are Entity Bean and Session Bean? How is container managed entity bean created? What is the d...
How EJB evolved over the years? What are Entity Bean and Session Bean? How is container managed entity bean created? What is the d...
From a logical point of view, a Servlet/JSP session is similar to an EJB session. Using a session, in fact, a client can connect to a server...
An EJB container provides the service of connection pooling in order to provide efficient way of database connectivity to its concurrent and...
The container provides following services: -Transaction Management -Persistence -Security -Connection Pooling -Naming services
An ejbCreate() method is called just before persisting the data into underlying database in case of Entity beans. It will create a new reco...
The major difference between CMP and BMP Entity Beans is managing persistence of data through container in case of CMP and programmatically ...
A client first locates an EJB over network through JNDI and then gets a home interface reference on the EJB. On home interface the moment cr...
An Entity Bean is : - a persistent business data object in a business process, which provides an OR (Object Relational) mapping over an un...
The evolution of EJB can be captured in following points: 1.0: - No mandate that Entity EJB must be supported by EJB container - EJB comm...