1.核心配置约束
要求
- 位置:放到src下
- 名称:必须是hibernate.cfg.xml
配置三部分
- 配置数据库信息(必须的)
- 配置hibernate的相关信息(不是必须的)
- 配置引入的映射文件(如果有映射文件必须配置)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- 配置数据库的相关信息 -->
<property name="hibernate.connection.driver_class">
com.mysql.jdbc.Driver
</property>
<property name="hibernate.connection.url">
jdbc:mysql://localhost:3306/student
<!-- 一种简写形式
jdbc:mysql:///student -->
</property>
<property name="hibernate.connection