SSH之hibernate.cfg.xml

Posted 齐齐木

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSH之hibernate.cfg.xml相关的知识,希望对你有一定的参考价值。

<?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:///day67</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

<!-- 可选配置 -->
<property name="hibernate.show_sql">true</property>
<property name="hibernate.format_sql">true</property>
<property name="hibernate.hbm2ddl.auto">update</property>

<!-- 配置C3P0的连接池 -->
<property name="connection.provider_class">org.hibernate.c3p0.internal.C3P0ConnectionProvider</property>
<!--把session绑定到当前线程上的配置-->
<property name="hibernate.current_session_context_class">org.springframework.orm.hibernate5.SpringSessionContext</property>

<!-- 映射配置文件 -->
<mapping resource="com/itheima/customer/domain/Customer.hbm.xml"/>

</session-factory>

</hibernate-configuration>

 

以上是关于SSH之hibernate.cfg.xml的主要内容,如果未能解决你的问题,请参考以下文章

SSH整合方案一(带有hibernate.cfg.xml)

SSH整合方案二(不带hibernate.cfg.xml)

Hibernate之HelloWorld

hibernate.cfg.xml 和 applicationContext.xml的关系,

SSH

利用SSH框架开发时遇到的各种Bug及解决方法