The hibernate application can be created with annotation. There are many annotations that can be used to create hibernate application such as @Entity, @Id, @Table etc.Hibernate Annotations are based on the JPA 2 specification and supports all the features.All the JPA annotations are defined in the javax.persistence.* package.HibernateEntityManager implements the interfaces and life cycle defined by the JPA specification.The core advantage of using hibernate annotation is that you don't need to create mapping (hbm) file. Here, hibernate annotations are used to provide the meta data.
Example to create the hibernate application with Annotation
There are 4 steps to create the hibernate application with annotation.
Add the jar file for oracle (if your database is oracle) and annotation
Create the Persistent class
Add mapping of Persistent class in configuration file
Create the class that retrieves or stores the persistent object
1) Add the jar file for oracle and annotation
For oracle you need to add ojdbc14.jar file. For using annotation, you need to add:
hibernate-commons-annotations.jar
ejb3-persistence.jar
hibernate-annotations.jar
2) Create the Persistent class
Here, we are creating the same persistent class which we have created in the previous topic. But here, we are using annotation. @Entity annotation marks this class as an entity. @Table annotation specifies the table name where data of this entity is to be persisted. If you don't use @Table annotation, hibernate will use the class name as the table name bydefault. @Id annotation marks the identifier for this entity. @Column annotation specifies the details of the column for this property or field. If @Column annotation is not specified, property name will be used as the column name bydefault.
package com.poosan.hib;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name= "emp500")
public class Employee {
@Id
private int id;
private String firstName,lastName;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
}
3) Add mapping of Persistent class in configuration file
open the hibernate.cgf.xml file, and add an entry of mapping resource like this:
4) Create the class that retrieves or stores the persistent object
In this class, we are simply storing the employee object to the database. Here, we are using theAnnotationConfiguration class to get the information of mapping from the persistent class.
0 comments:
Post a Comment