Tag Archives: Hibernate

Maven Archtypes List

Each archetype page should enforce the following pattern : * Archetype name* Command line to call the archetype* If the archetype can be used in an existing projects directory* A tree view of the resulting files* Some additional information like the additional properties used by the plugin To use an archetype: mvn archetype:generate Generate gives […]

read more

Java Persistence API – Getting Started

The Java persistence API (JPA) allows you to store data from POJO’s (Plain old Java Objects) into database tables. The persistence metadata is specified using Java annotations, XML mapping files or a combination of both. In case both are used then the XML information overwrites the annotations in the Java code. This persistence metadata defines […]

read more

Hibernate Interview Questions

1. What is Hibernate? Hibernate is a powerful, high performance object/relational persistence and query service. This lets the users to develop persistent classes following object-oriented principles such as association, inheritance, polymorphism, composition, and collections. 2. What is ORM? ORM stands for Object/Relational mapping. It is the programmed and translucent perseverance of objects in a Java […]

read more

Getting Started with Hibernate.

Hibernate Home http://www.javalobby.org/java/forums/t104442.html http://www.developersbook.com/hibernate/interview-questions/hibernate-interview-questions-faqs.php http://faqs.javabeat.net/hibernate/hibernate-interview-questions-faqs.php

read more