2009-05-14 18:04:26 +02:00
|
|
|
<!DOCTYPE hibernate-configuration
|
|
|
|
|
PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
|
|
|
|
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
|
|
|
|
|
|
|
|
|
|
<hibernate-configuration>
|
|
|
|
|
<session-factory>
|
|
|
|
|
<property name="hibernate.dialect">${hibernate.dialect}</property>
|
|
|
|
|
<property name="hibernate.show_sql">${hibernate.show_sql}</property>
|
|
|
|
|
<property name="hibernate.format_sql">${hibernate.format_sql}</property>
|
|
|
|
|
<property name="hibernate.use_sql_comments">${hibernate.use_sql_comments}</property>
|
|
|
|
|
<property name="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</property>
|
|
|
|
|
</session-factory>
|
|
|
|
|
</hibernate-configuration>
|