Hibernate简要介绍
Hibernate存入数据库首先要跟Configuration这个类打交道,通过configuration的buildSessionFactory来得到一个SessionFactory,然后拿到一个Session对象,然后直接调用save方法存入数据库就行了。
这就是面向对象的写法就是o/r-mapping o是object r是relationship是关系,是面向关系。Hibernate帮我们屏蔽了关系这一层。
Hibernate配置
首先去hibernate的官方网站www.hibernate.org去下载hibernate-distribution
由于要引进的包比较多,所以可以新建一个包含许多包的library,方法是:点击Windows-Preferences-Java-Build-User Libraries,新new一个取名为hinernate,然后就是加入jar包了。
我是刚去hibernate的官网上下的最新的包3.5.3final版,先把hibernate3.jar这个包加入进来,然后进入lib目录,将里面的required目录下的所有包加进来,由于里面使用了slf4j,注意这时候里面加减来的slf4j-api-1.5.8.jar里面的只是一些函数的声明,就相当于一个接口。你还要去网上下对应版本的slf4j,下下来之后把slf4j-nop-1.5.8.jar这个包包含进来,这个包里面的都是实现。
由于要和数据库进行联系所以还有一个数据库的jar包,添加你自己的数据库的jar包,我的是mysql的jar包
下面我们写一个演示的程序。
在myeclipse下新建一个java project,我的命名为Hibernate_Show,新建一个student类,包名随便你取。
student类如下:
public class Student {
private int id;
private String name;
private int age;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
新建一个hibernate.cfg.xml文件
对于这个配置文件最好自己去自己下的那个hibernate的包里面的说明文档里面去拷贝
我的目录是这样的documentation/manual/en-US/html-single下的index.html
去setup里面1.1.4 hibernate configuration下面的配置文件
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost/hibernate</property>
<property name="connection.username">root</property>
<property name="connection.password">root</property>
<!-- JDBC connection pool (use the built-in) -->
<!-- <property name="connection.pool_size">1</property>-->
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<!-- <property name="current_session_context_class">thread</property> -->
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<!-- <property name="hbm2ddl.auto">update</property> -->
<mapping resource="com/hibernate/model/Student.hbm.xml"/>
</session-factory>
</hibernate-configuration>
名字叫做hibernate.cfg.xml,这个名字最好不要乱改,就这个名字,放在根目录中。
首先看第一项,很明显是数据库连接的配置,你使用的是说明数据库这个自己改,还有里面的一些配置,比如是否使用二级缓存,以及显示sql语句等,这个看你自己的需要。
Student.hbm.xml
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.hibernate.model">
<class name="Student" table="student">
<id name="id" />
<property name="name" />
<property name="age" />
</class>
</hibernate-mapping>
贝
里面的标签一看比较清楚<class>就是你的类名,id这个标签是来映射你的主键,property是一些属性名,非主键属性。这个hibernate就知道怎么样把class和表对应到一起了。
在hibernate.cfg.xml文件中最后一项<mapping>这个里面是你的类与数据库的对应关系。把你刚才写好的对应关系配置文件必须放在这里,否则hibernate不好找。
下面来写测试程序,新建一个类StudentTest.java,如下:
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class StudentTest {
public static void main(String args[]){
Student s = new Student();
s.setId(4);
s.setName("s4");
s.setAge(4);
Configuration cfg = new Configuration();
SessionFactory sf = cfg.configure().buildSessionFactory();
Session session = sf.openSession();
session.beginTransaction();
session.save(s);
session.getTransaction().commit();
session.close();
sf.close();
}
}
其中cfg.configure()里面可以传参数,我这里没有传是因为默认是解析根目录下面的hibernate.cfg.xml文件,里面的beginTransaction函数是因为hibernate的处理都是放在一个事务中进行处理的。
Ok运行起来,最后可以在mysql中查看数据库中是不是多了一项数据。