核心配置:
核心配置有两种方式进行配置:
* 1、属性文件的配置:
* hibernate.properties
* 格式:
* key=value
* hibernate.connection.driver_class=com.mysql.jdbc.Driver
*注意:没有办法在核心配置文件中加载映射文件.(必须手动编码的方式进行加载.)*
* 2、XML格式文件配置:
* hibernate.cfg.xml
* 格式:
*<property name="hibernate.connection.username">root</property>
核心配置中:
* 1.必须的配置:
* 连接数据库4个基本参数:
hibernate.connection.driver_class 连接数据库驱动程序
hibernate.connection.url 连接数据库URL
hibernate.connection.username 数据库用户名
hibernate.connection.password 数据库密码
* Hibernate的方言:
hibernate.dialect 操作数据库方言
* 2.可选的配置:
hibernate.show_sql true