Sunday, July 11, 2010

General hibernate configuration - for quick reference


<hibernate-configuration>

 <session-factory>

   <property name="connection.driver.class">

    org.hsqldb.jdbcDriver

   </property>

   <property name="connection.url">

    url

   </property>

   <property name="connection.username">

    username

   </property>

   <property name="connection.password">

    password

   </property>

   <property name="connection.dialect">

    HSQLDialect

   </property>

   <property name="connection.pool_size">

    1

   </property>

   <property name="connection.show_sql">

    true

   </property>

   <mapping resource="test.hbm.xml"/>

 </session-factory>

</hibernate-configuration>

No comments:

Post a Comment