what is the Control flow of an Entity?
Answer / ch.n.v.ganesh
When a user invokes a One Application Server servlet
from a browser, the servlet may invoke one or more
enterprise beans. For example, the servlet may load a
JavaServer Page (JSP) to the user?s browser to request a
user name and password, then pass the user input to a
session bean to validate the input.
Servlet/Jsp EJB
User Interface------> BusinessLogic ---> DataBase
APp Client
After a valid user name and password combination is
accepted, the servlet might instantiate one or more entity
and session beans to run the application?s business logic,
then terminate. The beans themselves might instantiate
other entity or session beans to do further business logic
and data processing.
| Is This Answer Correct ? | 1 Yes | 1 No |
How can one EJB be called from within another EJB?
How is an entity bean created?
In an EJB project, Howmany tables and How many entity beans are used?
The ejb container implements the ejbhome and ejbobject classes. For every request from a unique client, does the container create a separate instance of the generated ejbhome and ejbobject classes?
What is enterprise javabeans (ejb) container?
How can enterprise javabeans be accessed from active server pages?
How does ejb container work?
why object class is a parent of all classes in java?
What is the purpose of JNDI?
What are the different types of ejb?
explain why we say stateless beans does not maintain conversation state besides statefull maintains conversation state. give some examples...
Using Container managed entity bean, how an entity bean can be created?