what is an ejb object?
Answer Posted / amardeep singh
The remote interface and the object implementation are similar to the corresponding RMI interfaces. A client issues method requests through a stub derived from the remote interface and eventually these requests make their way to the corresponding bean instance on the server. The home interface is a new twist: it acts as a bean factory, providing a way for a client to create, locate, and destroy EJB objects that it uses. With the home interface in the picture, the remote interface acts as the interface the client uses to interact with EJB objects, and the implementation is where the object itself does its thing.
The EJB object implementation needs to implement all the business methods in the remote interface, plus some methods used by the container to tell it about various events in its lifetime. The EJB object does not need to implement the remote interface, which is another new twist compared to RMI, where the server object always implements the remote interface. In EJB, the container arranges for method calls on the remote interface to be transferred to the EJB object. You just need to ensure that the EJB object has methods that match the signatures of the methods in the remote interface. We'll see an example of EJB object implementation a bit later.
Various pieces of these Java classes (home, remote, and implementation) are provided for the sake of the client, to allow a client to create EJB objects and call remote methods on them. Other pieces are provided for the EJB container, to allow it to notify the EJB object about transaction− and persistence related events, for example.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the procedure for the presentation of ejb persistence mechanism?
What is ejb and its properties?
What is ejb and its types?
What is the full form of ejb in java?
For ejb applications with bean-managed transaction demarcations, which of the following is used by the client to get a reference to the usertransaction object for the weblogic server domain?
What optimization could I use if the ejb container is the only point of write access to the database?
What is pub/sub model?
How does the server decide which beans to passivate and activate?
What is ejb context?
Can tomcat run ejb?
What is ejb technology?
Is method overloading allowed in ejb?
Can remove() be a Stateless Session bean?
What is an ejb context?
What is an entity and its types?