32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<!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.cache.use_second_level_cache">false</property>
|
|
|
|
<!-- Use in-memory DB for testing -->
|
|
<property name="connection.driver_class">org.h2.Driver</property>
|
|
<property name="connection.url">jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE</property>
|
|
<property name="connection.username">sa</property>
|
|
<property name="connection.password"/>
|
|
<property name="dialect">org.hibernate.dialect.H2Dialect</property>
|
|
|
|
<property name="connection.pool_size">3</property>
|
|
<property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>
|
|
<property name="show_sql">true</property>
|
|
|
|
<!-- Reset the DB each test -->
|
|
<property name="hbm2ddl.auto">create</property>
|
|
|
|
<!-- Objects -->
|
|
<mapping class="Value"/>
|
|
|
|
</session-factory>
|
|
|
|
</hibernate-configuration>
|