Thursday, 16 February 2012

What are the different approaches to represent an inheritance hierarchy? | Java Hibernate

There are three Inheritance Hierarchies
i. Table per concrete class.     
ii. Table per class hierarchy. 
iii. Table per subclass. 

What are the different methods of identifying an object? | Java Hibernate

There are three methods by which an object can be identified. 
i. Object identity –Objects are identical if they reside in the same memory location in the JVM. This can be checked by using the = = operator. 
ii. Object equality – Objects are equal if they have the same value, as defined by the equals( ) method. Classes that don’t explicitly override this method inherit the implementation defined by java.lang.Object, which compares object identity.
iii. Database identity – Objects stored in a relational database are identical if they represent the same row or, equivalently, share the same table and primary key value. 

What is Attribute Oriented Programming? | Java Hibernate

XDoclet has brought the concept of attribute-oriented programming to Java. Until JDK 1.5, the Java language had no support for annotations; now XDoclet uses the Javadoc tag format (@attribute) to specify class-, field-, or method-level metadata attributes. These attributes are used to generate hibernate mapping file automatically when the application is built. This kind of programming that works on attributes is called as Attribute Oriented
Programming.

What are the different types of property and class mappings? | Java Hibernate

• Typical and most common property mapping 
<property name="description" column="DESCRIPTION" type="string"/>
Or
<property name="description" type="string">
    <column name="DESCRIPTION"/>
</property> 
• Derived properties 
<property name="averageBidAmount" formula="( select AVG(b.AMOUNT) from BID b
where b.ITEM_ID = ITEM_ID )" type="big_decimal"/>
• Typical and most common property mapping 
<property name="description" column="DESCRIPTION" type="string"/> 
• Controlling inserts and updates 
<property name="name" column="NAME" type="string"
       insert="false" update="false"/>

What is HQL? | Java Hibernate

HQL stands for Hibernate Query Language. Hibernate allows the user to express queries in its own portable SQL extension and this is called as HQL. It also allows the user to express in native SQL. 

What is object/relational mapping metadata? | Java Hibernate

ORM tools require a metadata format for the application to specify the mapping between classes and tables, properties and columns, associations and foreign keys, Java types and SQL types. This information is called the object/relational mapping metadata. It defines the transformation between the different data type systems and relationship representations. 

What are POJOs? | Java Hibernate

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.