InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a core interface of Hibernate?(a) Configuration(b) Criteria(c) SessionManagement(d) SessionThe question was posed to me in examination.I want to ask this question from Hibernate topic in division Autoboxing & Miscellaneous of Java |
|
Answer» RIGHT choice is (c) SESSIONMANAGEMENT To elaborate: SessionManagement is not a core INTERFACE of Hibernate. Configuration, Criteria, SessionFactory, Session, Query and TRANSACTION are the core INTERFACES of Hibernate. |
|