how can u integrate ejb and hibernate? How can u call
hibernateDAO methods in session bean?
Answer Posted / guest
hibernate used to perform OR(object relational) mapping.it
is alternate to DAO .
servlets--->ejbSEssionbean(to store businesslogic)--->ejb
entity bean(to maintain persistence logic)here we use
hibernate instead of entity bean.
the above said is the integration procedure to separate
businesslogic from perssitence logic.
to call DAO methods in session bean normally we use
callback methods ejbcreate(),ejbload() to clear previous
datas in database,ejbstore()to store new datas using
primarykey value.ejbsetSessionContext() to initiate the
call.
Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
A client wants to preserve the reference to the ejbhome object of an enterprise bean instance and use it later. Which of the following can be serialized for this purpose?
Define ejb Create() and EjbPostCreate()?
What do you mean by ejb ql?
What are transaction isolation levels in ejb?
How does ejb invocation happens?
What is ejb and its types?
Which is more beneficial: Stateful or Stateless Bean?
What is the default transaction attribute for an ejb?
What is dependency injection in ejb?
What does @singleton annotation do?
How do you decide whether you should use session, entity or message driven bean?
What is @enableautoconfiguration?
Is microservice stateless?
Enlist the contents of Container.
What changes have been made in ejb 2.0 specifications?