标签:style blog class code java ext
上篇博客对Hibernate进行了基本的解析,并分析了它的一些特性。Hibernate能够如此的流行也是因为它有诸多优点,任何事物都有两面性,Hibernate虽然流行,但是也有很多缺点,其中最主要的是封装问题,想要使用数据库特性的语句,该框架就显得很不成熟了。那接下来讨论下有关Hibernate的核心运行机制。
另一种是比较完全的体系结构,应用程序有关数据库的操作及事务的管理全部交由Hibernate处理,应用程序只关心自己的对象模型即可,正如下图所示:
第二种才是比较完全的Hibernate框架,也是开发人员使用最广泛的。它完全将对象模型和关系模型隔离,开发人员只需要关心自己的对象模型即可,对数据库的管理交由Hibernate处理。
为了能清楚的了解这几种状态,这里使用一个实例来查看下这几种状态下对象的不同,下面状态内的代码,具体步骤如下:
(1)创建Hibernate_session程序集,并添加像相应的jar包;
(2)配置Hibernate,添加相应的实体User类,及它的映射文件,并配置好相应的数据库连接;User类文件的映射文件User.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 2014-4-30 15:39:33 by Hibernate Tools 3.4.0.CR1 --> <hibernate-mapping> <class name="com.hibernate.User"> <id name="id"> <generator class="uuid"/> </id> <property name="name"/> <property name="password"/> <property name="createTime"/> <property name="expireTime"/> </class> </hibernate-mapping>
<?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="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernate_session</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">ab12</property>
<!-- dialect:方言,封装的底层API,类似于Runtime,将数据库转换为配置中的相应的语言 -->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<mapping resource="com/hibernate/User.hbm.xml"/>
</session-factory>
</hibernate-configuration>
package com.hibernate; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class session { private static SessionFactory factory; //声明静态局部变量SessionFactory,数据库镜像 static{ try{ //创建并获取配置数据库的配置文件,默认获取hibernate.cfg.xml Configuration cfg=new Configuration().configure(); factory=cfg.buildSessionFactory(); //构建一个数据库镜像 }catch(Exception e){ e.printStackTrace(); //打印错误信息 } } public static Session getSession(){ return factory.openSession(); //返回创建的session对象 } public static SessionFactory getSessionFactory(){ return factory; //返回相应的SessionFactory } //关闭session对象 public static void closeSession(Session session){ if(session != null){ if(session.isOpen()){ session.close(); } } } }
package com.hibernate; import java.util.Date; import junit.framework.TestCase; import org.hibernate.Session; import org.hibernate.Transaction; public class SessionTest extends TestCase { }
【Hibernate步步为营】--核心对象+持久对象全析(一),布布扣,bubuko.com
【Hibernate步步为营】--核心对象+持久对象全析(一)
标签:style blog class code java ext
原文地址:http://blog.csdn.net/zhang_xinxiu/article/details/25363529