Hibernate (Java) Question:

What are POJOs?

Tweet Share WhatsApp

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.

Download Hibernate PDF Read All 52 Hibernate Questions
Previous QuestionNext Question
What should SessionFactory be placed so that it can be easily accessed?What is object/relational mapping metadata?