原文链接:Hibernate配置文件
通过配置文件(hibernate.properties或hibernate.cfg.xml)和映射文件(.hbm.xml)把java对象或持久化对象(Persistent Object,PO)映射到数据库中的数据表,
然后通过操作PO,对数据表中的数据进行增,删,改,查等操作.
Hibernate配置文件主要用来配置数据库连接参数,例如数据库的驱动程序URL,用户名,密码等。
两种格式:hibernate.properties和hibernate.cfg.xml。
一般情况下,hibernate.cfg.xml是Hibernate的默认配置文件。
(1) hibernate.properties:
在Hibernate-3.1的etc目录下有一个hibernate.properties模板。该配置模板文件定义了连接各种数据库所需要的参数。需要使用hibernate.properties时,修改该模板即可。该模板文件中每一个配置项前面的“#”是注释符号。
(2)hibernate.cfg.xml:
除了要定义Hibernate的各项属性,还要定义程序中用的映射文件(xxx.hbm.xml)。一般情况下是hibernate的默认配置文件。
hibernate.cfg.xml配置文件
xmlversion='1.0'encoding='UTF-8'?>
DOCTYPEhibernate-configurationPUBLIC
"-//Hibernate/HibernateConfiguration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<propertyname="connection.username">saproperty>
<propertyname="connection.url">
jdbc:sqlserver://localhost:1433;databaseName=hbDB
property>
<propertyname="dialect">
org.hibernate.dialect.SQLServerDialect
property>
<propertyname="myeclipse.connection.profile">hbDBproperty>
<propertyname="connection.password">saproperty>
<propertyname="connection.driver_class">
com.microsoft.sqlserver.jdbc.SQLServerDriver
property>
<propertyname="show_sql">trueproperty>
<mappingresource="cn/Customers.hbm.xml"/>
session-factory>
hibernate-configuration>
hibernate.cfg.xml配置文件属性
属性 |
说明 |
connection.username |
指定连接数据库的用户名 |
connection.url |
指定连接数据库的URL |
dialect |
用于配置hibernate使用的不同的数据类型。如Oracle、DB2、MS SQL Server、MySQL等。 |
myeclipse.connection.profile |
数据库的配置文件 |
connection.password |
指定连接数据库的密码 |
connection.driver_class |
指定数据库的驱动程序 |
show_sql |
若为true,表示程序在运行时,在控制台输出SQL语句。 |
mapping |
数据库表和实体的映射信息要在另外的映射文件中定义,但要在配置文件中声明。 |
实体类
Customers实体类要实现implemetns java.io.Serializable接口。
packagecn;
publicclassCustomersimplementsjava.io.Serializable {
privateIntegerid;
privateStringname;
privateIntegerage;
publicInteger getAge() {
returnage;
}
publicvoidsetAge(Integer age) {
this.age= age;
}
publicInteger getId() {
returnid;
}
publicvoidsetId(Integer id) {
this.id= id;
}
publicString getName() {
returnname;
}
publicvoidsetName(String name) {
this.name= name;
}
}
映射文件
另外,还要告诉Hibernate实体类Customers映射到数据库的哪个表,以及哪个属性对应数据库中的哪个字段。
Customers.hbm.xml
xmlversion="1.0"encoding="utf-8"?>
DOCTYPEhibernate-mappingPUBLIC"-//Hibernate/HibernateMapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<classname="cn.Customers"table="Customers"schema="dbo"catalog="hbDB">
<idname="id"type="java.lang.Integer">
<columnname="ID"/>
<generatorclass="identity"/>
id>
<propertyname="name"type="java.lang.String">
<columnname="Name"length="20"not-null="true"/>
property>
<propertyname="age"type="java.lang.Integer">
<columnname="Age"not-null="true"/>
property>
class>
hibernate-mapping>
1<classname="cn.Customers"table="Customers"schema="dbo"catalog="hbDB"通信dynamic-update="false"dynamic-insert="false"mutable="true">class>
每一个
(1)name属性:对应指定持久化实体类:Customers。
(2)table属性:对应数据库表的名字。
(3)schema属性:
(4)catalog属性:
(5)dynamic-update:若为false,表示当保存一个实例时,会动态生成update语句,只有该实例中的字段取值变化,才会把它包含到insert语句中。默认值为true。
(6)dynamic-insert:若为false,表示当插入一个实例时,会动态生成inset语句,只有该实例中的字段取值不为null时,才会把它包含到insert语句中。默认值为true。
(7)mutable:若为false,等价于所有的
2<idname="id"type="java.lang.Integer">
<columnname="ID"/>
<generatorclass="identity"/>
id>
(1)name属性:对应实体类的属性。
(2)type属性:指定hibernate映射的数据类型。对应Java数据类型。
(3)column属性:通过name属性指定其对应的数据库表的主键。
(4)generator属性:指定主键的生成策略。
3<propertyname="name"type="java.lang.String"update="true"insert="true">
<columnname="Name"length="20"not-null="true"/>
property>
与
(1)name属性:指定持久化类的属性。
(2)type属性:指定hibernate映射的数据类型。对应Java数据类型。
(3)column属性:通过name属性指定其对应的数据库表的字段名。
(4)length属性:通过name属性指定其对应的数据库表的字段名的长度。
(5)not-null属性:通过name属性指定其对应的数据库表的字段名是否为空。
(6)update:若为false则在更新数据时,不会更新该字段。默认为true.即更新。
(7)insert:若为false则在插入数据时,不会插入该字段。默认为true.即插入。
属性 |
说 明 |
Name |
指定持久化类的属性。 |
length |
指定段长度 |
not-null |
指明字段是否为空。默认为false。 |
unique |
指明字段是否具有唯一索引。默认为false。 |
unique-key |
为多个字段设定惟一约束 |
foreign-key |
指明一个外键的名字,它是为关联生成的。 |
sql-type |
设定字段的SQL类型。 |
check |
设定SQL检查约束。 |
在做唯一外键关联的时候都要用到property-ref="readTypeName"
在many-to-one加个属性,这个属性默认是指向主键的,把它改为主表的关联字段