`

hibernate.cfg.xml

阅读更多

<?xml version='1.0' encoding='utf-8'?>

<!DOCTYPE hibernate-configuration PUBLIC

        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"

        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

 

<hibernate-configuration>

 

    <session-factory>

 

        <!-- Database connection settings -->

        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>

        <property name="connection.url">jdbc:mysql://localhost:3306/test</property>

        <property name="connection.username">root</property>

        <property name="connection.password">root</property>

        <!-- SQL dialect -->

        <property name="dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>

        <!-- Echo all executed SQL to stdout -->

        <property name="show_sql">true</property>

   <property name="hbm2ddl.auto">create</property>  

   <property name="hibernate.c3p0.max_size">20</property>  

   <property name="hibernate.c3p0.min_size">5</property>

 

        <mapping resource="model/News.hbm.xml"/>

 

    </session-factory>

</hibernate-configuration>

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics