What are the required methods to implement EJB architecture?
Answers were Sorted based on User's Feedback
Answer / john
The methods that have to be present in an EJB are as follows
setSessionContext()
ejbCreate()
ejbPassivate()
ejbActivate()
ejbRemove()
The methods
ejbPassivate()
ejbActivate()
will be left empty in case of Stateless Session beans as
they do not support Passivation and Activation
| Is This Answer Correct ? | 2 Yes | 0 No |
What is pub/sub model?
Is it possible to have threading in ejb?
What is ejb container?
Define EAR, WAR and JAR ?
Describe client view of an Enterprise JavaBeans component?
Basic types of Enterprise JavaBeans?
What is session facade in ejb?
What is the relationship between an EJB component, EJB container, and an application server?
How to generate ejb stubs in eclipse?
What is the procedure for the creation of stateless ejb?
What were entity beans?
What is stateless programming?