hiberbate中的核心配置文件
<?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:///mybatis</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>
<!--第二步:配置hibernate信息 可选-->
<!--输出底层sql语句-->
<property name="show_sql">true</property>
<!--hibernate帮忙创建表
update:如果数据库有这个表就做更新操作,没有就创建新的表-->
<property name="hibernate.hbm2ddl.auto">update</property>
<!--数据库方言
如mysql中的分页是limit
oracle中的分页是rownum
让hibernate框架识别不同数据库特有的语言
-->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<!--第三步:把映射文件放到核心配置文件中 必须的-->
<mapping resource="com/bdqn/entity/User.hbn.xml"></mapping>
//绑定本地session需要配置
<property name="hibernate.current_session_context_class">thread</property>
</session-factory>
</hibernate-configuration>