what are required main interfaces in EJB?
Answers were Sorted based on User's Feedback
Answer / shilpa kapurkar
when we go for EJB 2.x version, the required interfaces to
develop and EJB component are
Remote Interface - Business Logic methods declaration
Home Interface - Life Cycle Methods
Bean class - Implemetation for BL methods & Life cycle methods
optionally, Local Interfaces.
When we go for EJB 3.0 , there is no need of declaring home
interface or Remote Interface. Instead it will make use of
JAVA POJO & POJI classes and interfaces. EJB 3.0 will have
only Business Interface (POJI) in which business methods are
declared. EJB3.0 makes use if Annotations.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is ejb home object?
What is the advantage of using entity bean for database operations, over directly using jdbc api to do database operations?
What is ejb client?
What is bean-managed transaction?
Name the attributes of javax.ejb.stateful.
How does legacy object mapping work?
What is the difference between Session bean and Entity bean?one?
Is having static initializer blocks legal in ejb?
Who took over ejb?
What is the advantage of using entity bean for database operations, over directly using jdbc api to do database operations? When would I use one over the other?
What does it mean to be stateless?
How Stateful Session bean will store its State ?