Describe client view of an Enterprise JavaBeans component?
Answer / guest
The client view is provided through two interfaces?the home
interface and the remote interface. These interfaces are
provided by classes constructed by the container when a bean
is deployed, based on information provided by the bean. The
home interface provides methods for creating a bean
instance, while the remote interface provides the business
logic methods for the component. By implementing these
interfaces, the container can intercede in client operations
on a bean, and offers the client a simplified view of the
component.
| Is This Answer Correct ? | 2 Yes | 0 No |
How does ejb invocation happens?
What is bean-managed transaction?
Define Initial Context?
Why do we need ejb in java?
What are ejb components?
How is ejb different from java beans?
What optimization could I use if the ejb container is the only point of write access to the database?
How do identify two same entity beans?
What do you mean by ejb ql?
What is the perpose of EJBs?
what is mean by com/Dcom ? Please answer me. Advance thanks.
Why does EJB needs two interfaces, Home and Remote Interface?