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 |
Name the acid properties of a transaction.
Explain transaction and various methods to manage it?
How EJB component can in interact with COM/DCOM components?
What are the advantages of ejb?
What is beaninfo ?
Which is the only method defined in the javax.ejb.handle interface?
What is the major difference SessionBean and EntityBean?
How bean-managed transactions will work?
can we stop the execution of a method before completion?
What are the different types of ejb?
Explain the concept of ejb ql?
What are the differences between ejb 3.0 and ejb 2.0?