<!DOCTYPE hibernate-configuration
    PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
    "http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">

<hibernate-configuration>

    <session-factory>

        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql:///hoge</property>
        <property name="hibernate.connection.username">hoge</property>
        <property name="hibernate.connection.password">hoge</property>
        <property name="hibernate.connection.pool_size">3</property>

        <property name="hibernate.dialect">net.sf.hibernate.dialect.MySQLDialect</property>
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.hbm2ddl.auto">update</property>


        <!-- Mapping files -->
        <mapping resource="dog.hbm.xml"/>

    </session-factory>

</hibernate-configuration>
