Hibernate (Java) Question:

What are POJOs?

Hibernate Interview Question
Hibernate Interview Question

Answer:

POJO stands for plain old java objects. These are just basic JavaBeans that have defined setter and getter methods for all the properties that are there in that bean. Besides they can also have some business logic related to that property. Hibernate applications works efficiently with POJOs rather then simple java classes.


Previous QuestionNext Question
What should SessionFactory be placed so that it can be easily accessed?What is object/relational mapping metadata?