前言:hibernate 必须的jar包链接地址:
当然你也可以去官网自行下载,官网地址:,可以选择想要的版本,我这里选的是:4.3.11.Final,
截图:
1.在ecplise 里新建java Project 项目名称hibernate-helloworld
2.在项目根目录下建lib包,(1)然后把hibernate 必须的jar包拷入lib内,然后选中拷入的jar包,右键--->build path--->add to build path ,(2)然后在导入mysql驱动jar包。
3.在src目录下新建hibernate.cfg.xml 文件,文件内容如下:
hibernate.cfg.xml
<?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> <!-- 配置连接数据库的基本信息 --> <property name="connection.username">root</property> <property name="connection.password">123456</property> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="connection.url">jdbc:mysql://localhost:3306/hibernate5</property> <!-- 配置hibernate的基本信息 --> <!-- hibernate 所使用的数据库方言 --> <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property> <!-- 执行操作时是否控制台打印sql --> <property name="show_sql">true</property> <!-- 是否对sql 进行格式化 --> <property name="format_sql">true</property> <!-- 指定自动生成数据表策略create:会根据.hbm.xml来生成表,但是每次生成都会删除上一次的表,重新生成表,哪怕两次没有任何改变 create-drop:最常用值,也会根据.hbm.xml来生成表,但若.hbm.xml 文件和数据库中对应的数据表的表结构不同, higernate 将会更新表数据结构,但不会删除已有的行和列 validate:会和数据库中的表进行比较,若 .hbm.xml 文件中的列在数据表中不存在,在抛出异常 --> <property name="hbm2ddl.auto">update</property> <!-- 指定关联的.hbm.xml文件 --> <mapping resource = "com/qimh/hibernate/helloworld/News.hbm.xml"/> </session-factory> </hibernate-configuration> |
4.创建持久化类,类内容如下:
注意,这里先创建包: com.qimh.hibernate.helloworld,然后再此包下,建立News.java 类。
News.java
package com.qimh.hibernate.helloworld; import java.sql.Date; public class News { private Integer id; private String title; private String author; private Date date; public News() { super(); } public News( String title, String author, Date date) { super(); this.title = title; this.author = author; this.date = date; }public String toString() { return "News [id=" + id + ", title=" + title + ", author=" + author + ", date=" + date + "]"; } public Integer getId() { return id; }public void setId(Integer id) { this.id = id; }public String getTitle() { return title; }public void setTitle(String title) { this.title = title; }public String getAuthor() { return author; }public void setAuthor(String author) { this.author = author; }public Date getDate() { return date; }public void setDate(Date date) { this.date = date; }} |
5.创建对象-关系映射文件,*.hbm.xml文件内容如下:
注意:在上面创建的包 com.qimh.hibernate.helloworld,目录下新建News.hbm.xml 文件
News.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"> <!-- Generated 2016-12-26 13:18:50 by Hibernate Tools 3.4.0.CR1 --> <hibernate-mapping> <class name="com.qimh.hibernate.helloworld.News" table="NEWS"> <id name="id" type="java.lang.Integer"> <column name="ID" /> <!-- 指定主键的生成方式 ,naive:使用数据库本地的方式--> <generator class="native" /><!-- assigned --> </id> <property name="title" type="java.lang.String"> <column name="TITLE" /> </property> <property name="author" type="java.lang.String"> <column name="AUTHOR" /> </property> <property name="date" type="java.sql.Date"> <column name="DATE" /> </property> </class> </hibernate-mapping> |
6.通过Hibernate API 编写访问数据库的代码,JUint Test Case类内容如下:
注意:1).与上面同样,也是在com.qimh.hibernate.helloworld下创新此类
2).这里是new--->JUint Test Case,不是新建普通java类。
HibernateTest.java
package com.qimh.hibernate.helloworld; import java.sql.Date; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.hibernate.service.ServiceRegistry; import org.hibernate.service.ServiceRegistryBuilder; import org.junit.Test;public class HibernateTest { public void test() { //1.创一个SessionFactory 对象 SessionFactory sessionFactory = null; //1).创建一个Configuration 对象,对应hibernate 的基本配置信息和对象关系映射信息 Configuration configuration = new Configuration().configure(); //4.0之前这样创建 // sessionFactory = configuration.buildSessionFactory(); //2).创建一个serviceRegistry 对象,:nibernate 4.x 新添加对象 //hibernate 的任何配置和服务都需要在该对象中注册后才能生效 ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry(); //3). sessionFactory = configuration.buildSessionFactory(serviceRegistry); //2.创建一个session对象 Session session = sessionFactory.openSession(); //3.开启事物 Transaction transaction = session.beginTransaction(); //4.执行保存操作 News news = new News( "java", "qimh", new Date(new java.util.Date().getTime())); session.save(news); //5.提交事物 transaction.commit(); //6.关闭session session.close(); //7.关闭sessionFactory sessionFactory.close(); } } |
7.运行 结果:
1).run as--->JUnit Test,截图如下:
2).hibernate会自动根据对象关系映射文件包把表自动建好,数据库结果: