2007-06-29 15:23:59 -04:00
|
|
|
<!DOCTYPE hibernate-configuration PUBLIC
|
|
|
|
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
2010-08-17 10:13:58 -04:00
|
|
|
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
|
2007-06-29 15:23:59 -04:00
|
|
|
|
|
|
|
<hibernate-configuration>
|
|
|
|
<session-factory name="foo">
|
|
|
|
<property name="show_sql">true</property>
|
|
|
|
<mapping resource="org/hibernate/test/legacy/Simple.hbm.xml"/>
|
|
|
|
<class-cache
|
|
|
|
class="org.hibernate.test.legacy.Simple"
|
|
|
|
region="Simple"
|
|
|
|
usage="read-write"/>
|
|
|
|
</session-factory>
|
|
|
|
</hibernate-configuration>
|