mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 11:48:18 +00:00
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20154 1b8cb986-b30d-0410-93ca-fae66ebed9b2
14 lines
472 B
XML
14 lines
472 B
XML
<!DOCTYPE hibernate-configuration PUBLIC
|
|
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
|
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
|
|
|
|
<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> |