Java EJB Programming Question:
Download Questions PDF

What is Entity Bean and Session Bean ?

Answer:

Entity Bean is a Java class which implements an Enterprise Bean interface and provides the implementation of the business methods. There are two types: Container Managed Persistence(CMP) and Bean-Managed Persistence(BMP).
Session Bean is used to represent a workflow on behalf of a client. There are two types: Stateless and Stateful. Stateless bean is the simplest bean. It doesn't maintain any conversational state with clients between method invocations. Stateful bean maintains state between invocations.

Download Java EJB Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is message-driven bean? How EJB Invocation happens?