我从网上下载了 hibernate-release-4.3.0.Final.zip,解压缩,把/lib/required文件夹下的所有jar包加入到eclipse项目中的Referenced Libraries里面。然后,我粗略地阅读了documentation/manual/en-US/html/下的文档,按部就班地做了如下的最简单实例(添加了一些修改)。由于文档中用的是HSQLDB,我就从网上下载了hsqldb-2.3.1.zip,解压缩,把/lib下的两个Jar包同样加入项目。在HSQLDB的/bin目录下,运行runServer.bat以启动数据库,再运行runManagerSwing.bat以启动管理数据库的简单GUI工具(选择HSQL Database Engine Server)。项目所要用到的一个表格的创建SQL为:

CREATE TABLE EVENTS
(
EVENT_ID INT IDENTITY,
EVENT_DATE DATE,
EVENT_TITLE VARCHAR(100)
)

Eclipse项目的根目录就是自带的src目录,在其下新建一个hibernate.cfg.xml。其内容为:

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- Database connection settings -->
<property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="connection.url">jdbc:hsqldb:hsql://localhost</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property> <!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">1</property> <!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.HSQLDialect</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.internal.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/example/domain/Event.hbm.xml"/> </session-factory> </hibernate-configuration>

以上代码实测可行,不用修改。

模型类都放在了com.example.domain目录下。这个例子中只有一个类,为Event:

package com.example.domain;

import java.util.Date;

public class Event {

    private Long id;
private String title;
private Date date; public Event() {
}
public Long getId() {
return id;
}
private void setId(Long id) {
this.id = id;
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}

用行话说,就是一个普通JavaBean,一个POJO。

还要放在com.example.domain目录中的、与Event.java靠在一起的是它的ORM配置文件,Event.hbm.xml:

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <hibernate-mapping package="com.example.domain">
<class name="Event" table="EVENTS">
<id name="id" column="EVENT_ID">
<generator class="native" />
</id>
<property name="date" type="timestamp" column="EVENT_DATE"/>
<property name="title" type="string" column="EVENT_TITLE"/>
</class>
</hibernate-mapping>

映射比较明了,有关generator的详细信息这里不提及。

根据官方文档里面给出的示例,我也建立了一个Hibernate助手类:HibernateUtil,放在com.example.util包下:

package com.example.util;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration; public class HibernateUtil { private static final SessionFactory sessionFactory = buildSessionFactory(); private static SessionFactory buildSessionFactory() {
try {
// Create the SessionFactory from hibernate.cfg.xml
return new Configuration().configure().buildSessionFactory();
}
catch (Throwable ex) {
// Make sure you log the exception, as it might be swallowed
System.err.println("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
} public static SessionFactory getSessionFactory() {
return sessionFactory;
} }

这个类我也是照抄的,用于提供SessionFactory对象。不过其中的buildSessionFactory显示为Depricated,有待进一步解决。

最后一个类,即有main函数的EventManager.java,放在com.example包下:

package com.example;

import java.util.Date;
import org.hibernate.Session;
import com.example.domain.Event;
import com.example.util.HibernateUtil; public class EventManager { private void createAndStoreEvent(String title, Date theDate) {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction(); Event theEvent = new Event();
theEvent.setTitle(title);
theEvent.setDate(theDate);
session.save(theEvent); session.getTransaction().commit();
} public static void main(String[] args) {
EventManager mgr = new EventManager();
mgr.createAndStoreEvent("My Event", new Date());
HibernateUtil.getSessionFactory().close();
} }

运行EventManager,在HSQLDB的Swing GUI工具里面运行Select * from EVENTS,就可以看到刚刚插入的一行数据了。

结果为:

1月5日也是我的生日哦!对的,今天我过生日。(^_^)

最新文章

  1. java之设计模式
  2. coreseek实战(三):全文搜索在php中应用(使用api接口)
  3. windows下配置nginx+php
  4. 百度图片爬虫-python版
  5. Topic Model
  6. Regular Ball Super Ball
  7. linux 之 snprintf函数用法
  8. HDU 1681 Frobenius(完全背包+标记装满)
  9. An internal error occurred during: &quot;Launching New_configuration&quot;
  10. for、for in和while以及do while
  11. .net core在网关中统一配置Swagger
  12. C Programming Style 总结
  13. VIM编辑器用法
  14. List&lt;T&gt;.ForEach 调用异步方法的意外
  15. SSM商城项目(十二)
  16. redis学习(三)——List数据类型
  17. CSS3 利用border-radius实现椭圆角
  18. centos7入门
  19. 04-树6 Complete Binary Search Tree(30 分)
  20. BZOJ 3622 已经没有什么好怕的了

热门文章

  1. 函数-this
  2. redhat7.2配置yum源
  3. Note: Bigtable, A Distributed Storage System for Structured Data
  4. 一、基础篇--1.1Java基础-equals与==的区别
  5. Mybaits 运行原理流程图
  6. elk5.0 版本遇到的安装问题
  7. C#规范整理&#183;语言要素
  8. delphi中 formclose的事件 action:=cafree form:=nil分别是什么意思?
  9. python 并发编程 协程 gevent模块
  10. C语言博客作业05