/**
作者:Willpower
来源:Rifoo Technology(http://www.rifoo.com)
时间:2006-06
备注:转载请保留以上声明
**/
今天我们来看看Hibernate配置文件,它分两种,一种是property文件,一种是XML文件。
Hibernate Property文件(默认hibernate.properties):
1 可以配置JDBC连接
2 如果JDBC是容器管理的,比如Weblogic等,那么可以在这里指定其JNDI名称
3 可以指定SQL方言,用来管理不同数据库之间的SQL语言(SQL方言我们将在后面学习)
XML配置文件(默认hibernate.cfg.xml):
1 可以配置Hibernate映射文件
2 可以配置缓存,监听器,SessionFactory的JNDI名
3 使用hibernate.cfg.xml将覆盖hibernate.properties中的设置
一个简单的例子:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration SYSTEM
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="dialect">org.hibernate.dialect.HSQLDialect</property>
<mapping jar="hibernate-mappings.jar"/>
<mapping resource="com/apress/hibernate/User.hbm.xml"/>
</session-factory>
</hibernate-configuration>