There are many blogs and tutorials on this topic. However I faced many problems while integrating Hibernate 3.0 with Eclipse Helios. Most of the problems were related to the version mismatch among the components used to create a Hibernate project on Eclipse Helios.
Software Requirements:
1. Eclipse Helios (This tutorial could work with other versions of Eclipse but it is specially designed for Helios version.)
2. hibernate-distribution-3.6.5.Final-dist bundle (zip file). Download the bundle from http://www.hibernate.org/downloads. It will be around 59.2 MB jar file.
3. MySql connector for Eclipse āmysql-connector-java-5.0.8 (zip)ā.
4. slf4j-1.6.1 bundle (zip form)
5. apache-log4j-1.2.16 bundle(zip form)
6. commons-logging-1.1.1.jar
Pre-Requisites:
1. In MySql create a database named ādb2ā.
2. Under database db2 create a table named āemployeeā with following attributes.
CREATE TABLE employee (
id VARCHAR(10),
name VARCHAR(20)
);
Note: The process to connect a MySql table to java code will be described next tutorial.
3. Add Hibernate perspective to eclipse helios.
Structure of Hibernate Distribution:
After downloading Hibernate unzip the zip file. Verify following is the file structure you get.
Creating a Hibernate Project in Eclipse Helios:
1. Open Eclipse Helios and select "File | New | Java Project".
2. Name the project as "HibernateTest" (or any other name of your choice). And leave other fields as default.
Now click āNextā then āfinishā.
3. Project opens in Project Explorer
4. Now we need to add the necessary jar files to the project. For this Right Click on the Project on the Project Explorer and select āBuild Path | Configure Build Pathā from the context menu.
5. On the build path window select āLibrariesā tab. Then click āAdd External Jarsā button.
6. Now add following jars to the projectās build path:
i. Following jars present under āhibernate-distribution-3.6.5.Final-dist (zip file) ā :
a. hibernate3.jar
b. hibernate-testing.jar
ii. Following files present under āhibernate-distribution-3.6.5.Final-dist (zip file)/lib/requiredā :
a. antlr-2.7.6.jar
b. commons-collections-3.1.jar
c. dom4j-1.6.1.jar
d. javassist-3.12.0.GA.jar
e. jta-1.1.jar
f. slf4j-api-1.6.1.jar
iii. Following jars present under āslf4j-1.6.1 (zip file)ā :
a. jul-to-slf4j-1.6.1.jar
b. log4j-over-slf4j-1.6.1.jar
c. slf4j-api-1.6.1.jar
d. slf4j-ext-1.6.1.jar
e. slf4j-jcl-1.6.1.jar
f. slf4j-jdk14-1.6.1.jar
g. slf4j-log4j12-1.6.1.jar
h. slf4j-migrator-1.6.1.jar
i. slf4j-nop-1.6.1.jar
j. slf4j-simple-1.6.1.jar
iv. Following jars present under āhibernate-distribution-3.6.5.Final-dist (zip file)/lib/jpaā :
a. hibernate-jpa-2.0-api-1.0.0.Final.jar
v. Following jars present under āapache-log4j-1.2.16 (zip file)ā :
a. log4j-1.2.16.jar
vi. Following jars present under āmysql-connector-java-5.0.8 (zip file)ā :
a. mysql-connector-java-5.0.8-bin.jar
vii. Add ācommons-logging-1.1.1.jarā to build path.
7. After adding all the jars the project structure should look like this:
8. Now we are done with the addition of jar files. Now the things needed to be done are making classed and xml files. For this first add a package āhibernate.pojoā to āsrcā folder of project.
9. Now add a simple Java Bean class āDevTitle.javaā to āhibernate.pojoā package and add following code to the class.
10. Now adding a hibernate mapping file that maps this bean class to a backend MySql Table. For this right click on āDevTitle.javaā and select āNew | Other | Hibernate | Hibernate XML Mapping File (hbm.xml)ā
Click āNext >ā
Click āNext >ā
Click āNext >ā
Click āFinishā
11. Verify the contents of āDevTitle.hbm.xmlā file are as follows:
12. Now we need to add āhibernate.cfg.xmlā file which contains all the configurations related to hibernate
Click āNext >ā again click āNext >ā then click āFinishā.
13. Add following code to āhibernate.cfg.xmlā
14. Now we need to add a class that contains a demo code to demonstrate āinsertionā and āretrivalā of records form out database. For this make a class under āhibernate.pojoā named āHibernateTest.javaā and paste following code :
package hibernate.pojo;
import java.util.Iterator;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import hibernate.pojo.DevTitle;
public class HibernateTest {
/**
* @param args
*/
public static void main(String[] args) {
Session session=null;
try
{
//Configuration cfg=new Configuration();
//cfg.addClass(hibernate.pojo.DevTitle.class);
SessionFactory sessionFactory=new Configuration().configure().buildSessionFactory();
session=sessionFactory.openSession();
//SessionFactory sessionFactory=cfg.configure("hibernate.cfg.xml").buildSessionFactory();
System.out.println(sessionFactory);
session=sessionFactory.openSession();
Transaction txn=session.beginTransaction();
System.out.println("inserting record...");
DevTitle title=new DevTitle();
title.setId("3002");
title.setName("rajeev");
session.save(title);
System.out.println("done....");
txn.commit();
session.flush();
session.close();
}catch(Exception exp){exp.printStackTrace();}
finally{
}
try
{
SessionFactory sessionFactory=new Configuration().configure().buildSessionFactory();
session=sessionFactory.openSession();
String query1="from DevTitle";
Query query=session.createQuery(query1);
System.out.println("quering records....");
for(Iterator<DevTitle> it=cast(query.iterate()); it.hasNext(); )
{
DevTitle title=(DevTitle) it.next();
System.out.println("ID="+title.getId()+" , name="+title.getName());
}
session.close();
}catch(Exception exp){System.out.println(exp.getMessage());}
finally{}
}
@SuppressWarnings( "unchecked" )
private static final <X> X cast(Object o)
{
return (X)o;
}
}
15. Run the following code as Java Application and if everything is configured properly then following result should get displayed at the console :
Comments
Post a Comment