一、创建持久化类的要求:
1.1提供一个无参的构造器:因为hibernate底层有使用反射使用空构造(Construtor.newInstance()来给我们创建类。
1.2提供一个标识属性:通常映射为数据库表的主键字段,如果没有该属性,session.saveOrUpdate()等一些方法不能起作用。
1.3为类的持久化类字段声明访问方法(set/get)
1.4使用非final类:在运行时生成代理是Hibernate的一个重要的功能,如果持久化类没有实现任何接口,Hibernate使用CGLIB生成代理,如果使用的是final类,则无法生成CGLIB代理。
1.5重写equals和hashCode()方法:如果需要把持久化类的实例放到Set中(当需要进行关联映射时),则应该重写这两个方法。
Hibernate不要求持久化类继承任何父类或实现接口,这可以保证代码不被污染。这就是Hibernate被称为低侵入式设计的原因。
二、持久化类和数据库之间的映射文件(*.hbm.xml)
hibernate采用XML格式的文件来指定对象和关系数据库之间的映射,在运行时hibernate将根据这个映射文件来生成各种sql语句。映射文件的扩展名为:.hbm.xml
三、hibernate API
3.1Configration类
Configration类负责管理hibernate的配置信息。包括如下内容:
hibernate运行的底层信息:数据库的url、用户名、密码、JDBC驱动类,数据库Dialect,数据库连接池等(对应hibernate.cfg.xml文件)。
持久化类与数据库表的映射关系(.hbm.xml文件)
创建Configuration的两种方式
属性文件(hibernate.properties)
Configration cfg=new Configration();
xml文件(hibernate.cfg.xml)
Configration cfg=new Configration().configure();
Configration的configure方法还支持带参数的访问:
File file=new File("simple.xml");
Configuration cfg=new Configuration().configure(file);
3.2SessionFactory接口
针对单个数据库映射关系经过编译后的内存镜像,是线程安全的。
SessionFactory对象一旦构造完毕,即被赋予特定的配置信息
SessioFactory是生成Session的工厂
构造SessionFactory很小号资源,一般情况下一个应用中只初始化一个SessionFactory对象。
hibernate新增了一个ServiceRegistry接口,所有基于hibernate的配置或者服务都必须统一向这个ServiceRegistry注册后才能生肖
hibernate4中创建SessionFactory的步骤如下:
Configuration configuration=new Configuration().configure(); ServiceRegistry serviceRegistry=new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry(); SessionFactory sessionFactory=configuration.buildSessionFactory(serviceRegistry); Session session=sessionFactory.openSession(); Student student=new Student("zhangsan", "zhangsan110", true, 22,new Date(new java.util.Date().getTime())); Transaction transaction = session.beginTransaction(); session.save(student); transaction.commit(); session.close(); sessionFactory.close();