Hibernate通过读取默认的XML配置文件hibernates.cfg.xml加载教据库的配置信息,该配置文件被默认放于项目的classpath根目录下。
'1.0'encoding='UTF-8'?>
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
"dialect">org.hibernate.dialect.MySQLDialect
"connection.url">jdbc:mysql://127.0.0.1:3306/banggo?useUnicode=true&characterEncoding=utf8
"connection.username">root
"connection.password">123
"connection.driver_class">com.mysql.jdbc.Driver
"show_sql">true
"format_sql">true
"current_session_context_class">thread
从配置文件中可以看出,配里的信息包括整个数据库的信息,例如数据库的驭动、URL地址、用户名、密码和Hibernate使用的方言,还需要管理程序中各个数据库表的映射文件。配置文件中元素的常用配置属性如下图所示。