2015-05-18 23:23:35 -05:00
|
|
|
<!--
|
|
|
|
~ Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
~
|
|
|
|
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
|
|
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
|
|
-->
|
2007-06-29 19:23:59 +00:00
|
|
|
<!DOCTYPE hibernate-configuration PUBLIC
|
|
|
|
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
2010-08-17 14:13:58 +00:00
|
|
|
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
|
2007-06-29 19:23:59 +00:00
|
|
|
|
|
|
|
<hibernate-configuration>
|
|
|
|
<session-factory name="foo">
|
|
|
|
<property name="show_sql">true</property>
|
|
|
|
<mapping resource="org/hibernate/test/legacy/Simple.hbm.xml"/>
|
|
|
|
<class-cache
|
2021-06-28 15:07:11 +02:00
|
|
|
class="org.hibernate.orm.test.legacy.Simple"
|
2007-06-29 19:23:59 +00:00
|
|
|
region="Simple"
|
|
|
|
usage="read-write"/>
|
|
|
|
</session-factory>
|
|
|
|
</hibernate-configuration>
|