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’s new in the ejb 2.0 specification?
How EJB component can in interact with COM/DCOM components?
Is it possible to write two EJBs that have different bean classes, but they share same Remote interface and Home interfaces?
Is decorator an ejb design pattern?
What is mdb?
Mention the three levels for applying interceptor methods.
How to create ejb project in eclipse?
What do you mean by ‘hot deployment’ ?
What is ejb 3?
An EJB client, can marshall an object of the class java.lang.Class to an EJB?
Define Initial Context?
What is JAR file?