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 the Relationship between EJB and CORBA architecture?
Should services be stateless?
How does EJB 2.0 improve support for interoperability between EJB containers and other J2EE products?
What is stateless session bean?
Can CMP manage BMP Transaction ? Entity Bean Life Cycle ?
1 Answers IBM, SAP Labs, Sony,
Is state maintained by a Stateless bean?
How ejb invocation happens?
What is stateless programming?
What is bean-managed persistence?
How EJB component can in interact with COM/DCOM components?
What is an ejb container?
explain why we say stateless beans does not maintain conversation state besides statefull maintains conversation state. give some examples...